Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApp1
- {
- class Program
- {
- static void Main()
- {
- int[,] array = new int[4, 4];
- Console.WriteLine("Dhlwse noumerakia trele mou ;)");
- for (int i = 0; i < 4; i++)
- {
- for (int j = 0; j < 4; j++)
- {
- array[i, j] = int.Parse(Console.ReadLine());
- }
- }
- Console.Clear();
- for (int i = 0; i < 4; i++)
- {
- for (int j = 0; j < 4; j++)
- {
- Console.WriteLine("Trele mou gia to shmeio {0},{1} exeis dwsei thn timoula {2}", i, j, array[i, j]);
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment