Advertisement
Guest User

Untitled

a guest
Jan 31st, 2015
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.43 KB | None | 0 0
  1. namespace ConsoleApplication7
  2. {
  3.     class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             int[] array = new int[3];
  8.             for (int i = 1; i < 4; i++)
  9.             {
  10.                 do
  11.                 {
  12.                     Console.WriteLine("Введите {0} число", i);
  13.                 } while (!int.TryParse(Console.ReadLine(), out array[i - 1]));
  14.             }
  15.         }
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement