Write a program to calculate Area of Rectangle. [Use Scanner Class).
Answers
Answered by
0
Answer:
length× breath
Explanation:
hope it is useful.....
Answered by
0
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);
}
Explanation:
hope it's helpful
Similar questions