Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace prac_3_ex_5
- {
- class Program
- {
- static void Main(string[] args)
- {
- for (int i = 0; i < 5; i++)
- {
- for (int j = -10; j <= 12; j++)
- Console.Write("{0} ", j);
- Console.WriteLine();
- }
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement