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;
- using System.Threading.Tasks;
- namespace ConsoleApp42
- {
- class Program
- {
- static void Main(string[] args)
- {
- double i, j;
- int[,] array = new int [5, 4];
- for (i = 0; i < 5; i++)
- for (j = 0; j < 4; j++)
- array[i, j] = double.Parse(Console.ReadLine());
- for (i = 0; i < 5; i++)
- {
- for (j = 0; j < 4; j++)
- Console.Write(array[i, j] + " " );
- Console.WriteLine();
- }
- }
- }
- }
- /*
- 1
- 2
- 3,14
- 6,28
- 3,5
- 7
- 38,47
- 21,98
- 4
- 8
- 50,24
- 25,12
- 0
- 0
- 0
- 0
- 2,2
- 4,4
- 15,20
- 13,82
- */
Add Comment
Please, Sign In to add comment