Write a module to calculate the area of a rectangle in perl
Answers
Answered by
2
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