1) Write the Java program to calculate the area of the rectangle having lenght (l) = 8 and breadth  (b) = 4.
  1. class Maths
  2. {  
  3. public static void main(String [] args)
  4. {  
  5. int l=8
  6. int b=4;
  7. int area=l*b
  8. System.out.print(area);
  9. }
Output:
32                                                           
                                                               
                                                               
                                                               


----------------------------------------------------xxx---------------------------------------------------------------

2) Write the Java program to calculate the perimeter of the rectangle having lenght (l) = 8 and breadth  (b) = 4.
  1. class Maths
  2. {  
  3. public static void main(String [] args)
  4. {  
  5. int l=8
  6. int b=4;
  7. int a=2;
  8. int peri= a(l+b);
  9. System.out.print(peri);
  10. }
Output:
24                                                           
                                                               
                                                               
                                                               


----------------------------------------------------xxx---------------------------------------------------------------

3) Write the Java program to calculate the area and  perimeter of the square having lenght(l)=4.
  1. class Maths
  2. {  
  3. public static void main(String [] args)
  4. {  
  5. int l=4
  6. int area= l*l;
  7. System.out.print(area);
  8. }
Output:
16                                                           
                                                               
                                                               
                                                               

----------------------------------------------------xxx---------------------------------------------------------------

4) Write the Java program to calculate the area and  perimeter of the square having lenght(l)=4.
  1. class Maths
  2. {  
  3. public static void main(String [] args)
  4. {  
  5. int l=4
  6. int a=4;
  7. int peri= l*a;
  8. System.out.print(peri);
  9. }
Output:
16                                                           
                                                               
                                                               
                                                               

----------------------------------------------------xxx---------------------------------------------------------------