Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _04.Sequence2k_1
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- int f = int.Parse(Console.ReadLine());
- int h = 1;
- while (h <= f)
- {
- Console.WriteLine(h);
- h = h * 2 + 1;
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement