Advertisement
Sephinroth

prac 7 ex 4

Nov 11th, 2019
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.41 KB | None | 0 0
  1. // считать, транспонировать исходную матрицу, вставить вектор, транспонировать ещё раз
  2. // или
  3. // считать ступенчатым, но вместо строк считать столбцы
  4.  
  5.  
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. using System.Text;
  10.  
  11. namespace ConsoleApplication6
  12. {
  13.     class Program
  14.     {
  15.         static void Input (out int[,]array)
  16.         {
  17.             Console.Write("Введите размерность матрицы n: ");
  18.             int n = int.Parse(Console.ReadLine());
  19.             array = new int[n,n];
  20.             for (int i = 0; i < n; i++)
  21.             {
  22.                 for (int j = 0; j < n; j++)
  23.                 {
  24.                     Console.Write("a[{0}][{1}]: ", i, j);
  25.                     array[i,j] = int.Parse(Console.ReadLine());
  26.                 }
  27.             }
  28.         }
  29.         static void Input (out int[] X)
  30.         {
  31.             Console.Write("Введите длину вектора l: ");
  32.             int l = int.Parse(Console.ReadLine());
  33.             X = new int[l];
  34.             for (int i = 0; i < X.Length; i++)
  35.             {
  36.                 Console.Write("X[{0}]: ", l);
  37.                 X[i] = int.Parse(Console.ReadLine());
  38.                 }
  39.         }
  40.         static void Transparent(int[,] array)
  41.         {
  42.             int temp = 0;
  43.             for (int i = 0; i < array.Length; i++)
  44.                 for (int j = 0; j < array.Length; j++)
  45.                 {
  46.                     temp = array[i,j];
  47.                     array[i,j] = array[j,i];
  48.                     array[j,i] = temp;
  49.                 }
  50.         }
  51.         static void Change(int[][] array, int[] X)
  52.         {
  53.             for (int j = 0; j < array.Length; j++)
  54.             {
  55.             }
  56.         }
  57.  
  58.         static void Print(int[,] array)
  59.         {
  60.             for (int i = 0; i < array.Length; i++)
  61.             {
  62.                 for (int j = 0; j < array.Length; j++ )
  63.                     Console.Write("{0} ", array[i,j]);
  64.                 Console.WriteLine();
  65.             }
  66.         }
  67.  
  68.  
  69.         static void Main(string[] args)
  70.         {
  71.             int[,] array;
  72.             int[] X;
  73.             Input(out array);
  74.             //Input(out X);
  75.             Transparent(array);
  76.             Print(array);
  77.             Console.ReadKey();
  78.            
  79.  
  80.  
  81.         }
  82.     }
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement