Computer Science, asked by muskanmandal72, 3 months ago

write a program in java script to enter length &breadth and Calculate the area of rectangles​

Answers

Answered by yashneilplayz2009
0

Answer:

Explanation:

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