Advertisement
Droo

P4_1c

Oct 22nd, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. package PreSession_05;
  2.  
  3. public class p4_1c {
  4.  
  5.     public static void main(String[] args) {
  6.         // TODO Auto-generated method stub
  7.         int power;
  8.         int count = 0;
  9.         while (count <=20)  {
  10.             power = (int) Math.pow(2, count);
  11.             System.out.println(power);
  12.             count += 1;
  13.         }
  14.  
  15.     }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement