Computer Science, asked by ayushghughtyal14, 1 day ago

write a java program to find area of a rectangle with 12 length and 6 breadth​

Answers

Answered by deepika15052222
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