Java Program To Find Area of Square | Class 12 GSEB Java Practical


Java Program To Find Area of Square | Class 12 GSEB Java Practical


 
class areaofsquare 
{ 
public static void main(String a1[]) 
{ 
double r=40,a; 
a=r*r; 
System.out.print("Area of Square is"+a);
}
}

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.
Code Copied!