Advertisement
dragonbs

Sequence 2k+1

Oct 23rd, 2022
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _04.Sequence2k_1
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int f = int.Parse(Console.ReadLine());
  10.             int h = 1;
  11.  
  12.             while (h <= f)
  13.             {
  14.                 Console.WriteLine(h);
  15.                 h = h * 2 + 1;
  16.             }
  17.         }
  18.     }
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement