Computer Science, asked by gitangli6636, 8 months ago

Write a module to calculate the area of a rectangle in perl

Answers

Answered by Anonymous
2

\huge\mathcal{Answer:}

public class rectangle{

public static void main(String args[])

{

int width=5;

int height=10;

int area=width*height;

System.out.println("Area of rectangle="+area);

}

Similar questions