Fill in the blanks to complete the following program:
Public class area // area of circle
{
a) _________________________________
{
Int r=0;
b) ____ area;
c) area=22.7*____*_____;
System.out.println(“Area is”,+area);
}
}
Answers
Answered by
0
Answer:
a) public static void main (String args [ ])
b) int area
c) r r
Similar questions