Advertisement
micher43

E6.1 part C

Oct 23rd, 2014
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.17 KB | None | 0 0
  1.  
  2. public class E61 {
  3.  
  4.     public static void main(String[] args) {
  5.        
  6.         for(int i=1; i <= 20; i++){
  7.             System.out.print(Math.pow(2, i) + " ");
  8.            
  9.         }
  10.        
  11.        
  12.     }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement