Advertisement
Guest User

Untitled

a guest
Sep 17th, 2017
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1. public class Обучение {
  2.     public static void main(String[] args) {
  3.         int e, result;
  4.         for(int i=0;i<10;i++) {
  5.           result=1;
  6.           e=i;
  7.           while (e>0){
  8.           result *=2;
  9.           e--;
  10.           }
  11.           System.out.println("2 в степени "+i+" равно "+result);    
  12.         }
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement