Advertisement
Sephinroth

56676

Sep 17th, 2020
1,125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.76 KB | None | 0 0
  1. using System;
  2.  
  3. namespace interpolation
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int n;
  10.             Console.WriteLine("Пиши n:");
  11.             n = int.Parse(Console.ReadLine());
  12.             float[,] num = new float[2, n];
  13.             for (int i = 0; i < 2; i++)
  14.                 for (int j = 0; j < n; j++)
  15.                 {
  16.                     Console.Write("num[{0}][{1}] = ", i, j);
  17.                     num[i, j] = float.Parse(Console.ReadLine());
  18.                 }
  19.             for (int i = 0; i < 2; i++)
  20.             {
  21.                 for (int j = 0; j < n; j++)
  22.                     Console.Write("{0}|\t",num[i, j]);
  23.                 Console.WriteLine();
  24.             }
  25.  
  26.  
  27.            
  28.         }
  29.     }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement