Computer Science, asked by amaira1609, 7 months ago

Question 4:
Write a program in Java to find the Area of a Rectangle using Function
Argument/Blue System.​

Answers

Answered by IamGenesis
1

Answer:

class area{

void main (double l; double b){

double area = l*b;

System.out.println("Area is "+ area);

}

}

you may take int instead of double

this is only valid for BlueJ

Similar questions