Advertisement
buss2

C# - kod 5

Jun 9th, 2015
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.43 KB | None | 0 0
  1. using System;
  2.  
  3.  
  4. public class Program
  5. {
  6.     static void Main(string[] args)
  7.     {
  8.         Console.WriteLine("Do ilu chcesz odliczaΔ‡?");
  9.         string number = Console.ReadLine();
  10.         long counter = 1;
  11.         long nnumber = long.Parse(number);
  12.         while (counter <= nnumber)
  13.         {
  14.              Console.WriteLine(counter);
  15.              counter++;
  16.         }
  17.         Console.ReadKey();
  18.         }
  19.  
  20.  
  21.      }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement