Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. class Area{
  2.     public static void main (String [] args){
  3.         double r;
  4.         double pi;
  5.         double a;
  6.         r = 10.8;
  7.         pi = 3.1416;
  8.         a = pi*r*r;
  9.         System.out.println("Circle squer is "+a);
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement