Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class EvenPowersOf2 {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- int number = Integer.parseInt(scanner.nextLine());
- for (int n = 0; n <= number; n += 2) {
- System.out.println(Math.pow(2, n));
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement