Advertisement
Leexhacafay

Tabung

Sep 18th, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.47 KB | None | 0 0
  1. import java.util.Scanner;
  2. public class Tabung
  3. {
  4.     public static void main(String[] args) {
  5.     Scanner input = new Scanner (System.in);
  6.     //Noviyarti H1051191093
  7.     double phi = 3.14;
  8.     int r;
  9.     int t ;
  10.     double luas;
  11.    
  12.    
  13.     System.out.print ("Jari-jari = ");
  14.     r = input.nextInt();
  15.     System.out.print ("Tinggi Tabung = ");
  16.     t = input.nextInt();
  17.     luas = phi * r * t;
  18.     System.out.println("Luas Tabung = "+luas);
  19.        
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement