Guest User

Untitled

a guest
Feb 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.70 KB | None | 0 0
  1. //My name is "I suck dick for metsuro's help"
  2.  
  3. import java.util.Scanner;
  4. public class homework5 {
  5.   public static void main (String[] args)
  6.   {
  7.     Scanner input = new Scanner(System.in);
  8.    
  9.     switch( input.nextInt()) {
  10.       case 1: {
  11.                double r= input.nextDouble();
  12.                double a=  Math.PI*r*r;
  13.                System.out.format("%,.2f.%n", a);
  14.                
  15.                };
  16.        case 2: {
  17.                double l= input.nextDouble();
  18.                double w= input.nextDouble();
  19.                double a=l*w;
  20.                System.out.format("%,.2f.%n", a);
  21.                
  22.                };
  23.      
  24.       default: break;
  25.                             }
  26.   }
  27. }
Add Comment
Please, Sign In to add comment