write a java program to find area of a rectangle with 12 length and 6 breadth
Answers
Answered by
1
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
Math,
22 hours ago
Biology,
22 hours ago
Math,
1 day ago
English,
1 day ago
Computer Science,
8 months ago