Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Globalization;
- namespace Loops
- {
- class Program
- {
- static void Main(string[] args)
- {
- int n = int.Parse(Console.ReadLine());
- //за всички четни степени от 0 до n (0, 2, 4, 6, 8, 10 ...)
- //печатаме 2 на тази степен
- for (int power = 0; power <= n; power += 2)
- {
- Console.WriteLine(Math.Pow(2, power));
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement