Write a program in Java to find the Area of a Rectangle using Function
Argument/BlueJ System.
Answers
Answered by
1
Answer:
public class Area
{
public static void main(String args[])
{
int l=15;
int b=10;
int area=l*b
System.out.println(area);
}
}
Similar questions
Math,
4 months ago
History,
4 months ago
World Languages,
4 months ago
Physics,
9 months ago
English,
1 year ago