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 ConsoleApplication6
- {
- class Program
- {
- static void Input (out int[,]array)
- {
- Console.Write("Введите размерность матрицы n: ");
- int n = int.Parse(Console.ReadLine());
- array = new int[n,n];
- for (int i = 0; i < n; i++)
- {
- for (int j = 0; j < n; j++)
- {
- Console.Write("a[{0}][{1}]: ", i, j);
- array[i,j] = int.Parse(Console.ReadLine());
- }
- }
- }
- static void Input (out int[] X)
- {
- Console.Write("Введите длину вектора l: ");
- int l = int.Parse(Console.ReadLine());
- X = new int[l];
- for (int i = 0; i < X.Length; i++)
- {
- Console.Write("X[{0}]: ", l);
- X[i] = int.Parse(Console.ReadLine());
- }
- }
- static void Transparent(int[,] array)
- {
- int temp = 0;
- for (int i = 0; i < array.Length; i++)
- for (int j = 0; j < array.Length; j++)
- {
- temp = array[i,j];
- array[i,j] = array[j,i];
- array[j,i] = temp;
- }
- }
- static void Change(int[][] array, int[] X)
- {
- for (int j = 0; j < array.Length; j++)
- {
- }
- }
- static void Print(int[,] array)
- {
- for (int i = 0; i < array.Length; i++)
- {
- for (int j = 0; j < array.Length; j++ )
- Console.Write("{0} ", array[i,j]);
- Console.WriteLine();
- }
- }
- static void Main(string[] args)
- {
- int[,] array;
- int[] X;
- Input(out array);
- //Input(out X);
- Transparent(array);
- Print(array);
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement