Computer Science, asked by keerthanasree2008, 2 months ago

write a java program to calculate the area of a parallelogram​

Answers

Answered by mayureshbelamkar1906
2

Answer:

answer

Explanation:

class program

{

public static void main(double b, double h)

{

double a;

a = b*h;

System.out.println("The area of parallelogram is " + a);

}

}

pls like if I have helped you

Similar questions