Guest User

Untitled

a guest
Jun 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. class Testing {
  2. public static void main(String args[]) {
  3.  
  4. int e;
  5. int result;
  6.  
  7. for(int i = 0; i < 10; i++) {
  8. result = 1;
  9. e = i;
  10. while(e > 0) {
  11. result *= 2;
  12. e--;
  13. }
  14.  
  15. System.out.println("2 to the " + i + " power is " + result);
  16. }
  17. }
Add Comment
Please, Sign In to add comment