Advertisement
Sephinroth

prac 3 ex 5

Sep 21st, 2019
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.44 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace prac_3_ex_5
  7. {
  8.     class Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             for (int i = 0; i < 5; i++)
  13.             {
  14.                 for (int j = -10; j <= 12; j++)
  15.                     Console.Write("{0} ", j);
  16.                 Console.WriteLine();
  17.             }
  18.             Console.ReadKey();
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement