Computer Science, asked by amaira1609, 9 months ago

Write a program in Java to find the Area of a Rectangle using Function
Argument/BlueJ System.​

Answers

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