Advertisement
callumbinner22

task1

Nov 6th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. using System;
  2.  
  3. public class Program
  4. {
  5.     public static void Main()
  6.     {
  7.      Console.WriteLine("Please enter number");
  8.      int num = Convert.ToInt32(Console.ReadLine());
  9.      int i = 0;
  10.      if (num < 1)
  11.      {
  12.          Console.WriteLine("Please enter a number greater than 1!");
  13.      }
  14.     else
  15.     {
  16.         while (i<=num)
  17.         {
  18.         Console.WriteLine(i);
  19.           i++;
  20.         }
  21.     }
  22.         }
  23.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement