Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package Uprajneniq;
- import java.util.Scanner;
- /**
- * Created by todor on 20.02.2017 г..
- */
- public class u04_EvenPowersOf2 {
- public static void main(String[] args) {
- Scanner scan = new Scanner(System.in);
- int n = Integer.parseInt(scan.nextLine());
- int num = 1;
- for (int i = 0; i <= n; i+=2){
- System.out.println(num);
- num *= 4;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement