Найти максимальное число в векторе и вывести его - C#

Узнай цену своей работы

Формулировка задачи:

Помогите, пожалуйста, найти максимальное число в векторе. Всё уже перепробовал. Буду рад любой подсказке.
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ConsoleApplication11
  6. {
  7. public class Matrix
  8. {
  9. double[,] matrix;
  10. public int Row { get; protected set; }
  11. public int Column { get; protected set; }
  12. public Matrix(int row, int column)
  13. {
  14. Row = row;
  15. Column = column;
  16. matrix = new double[row, column];
  17. }
  18. public Matrix Multiple(Matrix value)
  19. {
  20. Matrix result = new Matrix(Row, value.Column);
  21. for (int i = 0; i < Row; i++)
  22. for (int j = 0; j < value.Column; j++)
  23. for (int k = 0; k < value.Row; k++)
  24. result.matrix[i, j] += matrix[i, k] * value.matrix[k, j];
  25. return result;
  26. }
  27. public void Read()
  28. {
  29. for (int i = 0; i < Row; i++)
  30. for (int j = 0; j < Column; j++)
  31. {
  32. Console.Write("Введите элемент [{0},{1}]: ", i + 1, j + 1);
  33. matrix[i, j] = System.Convert.ToDouble(Console.ReadLine());
  34. }
  35. }
  36. public void Print()
  37. {
  38. for (int i = 0; i < Row; i++)
  39. {
  40. for (int j = 0; j < Column; j++)
  41. Console.Write("{0:f2} ", matrix[i, j]);
  42. Console.WriteLine();
  43. }
  44. }
  45.  
  46. }
  47. class Program
  48. {
  49. static void Main(string[] args)
  50. {
  51. Matrix vector = new Matrix(1, 4);
  52. Matrix matrix = new Matrix(4, 4);
  53. Console.Clear();
  54. Console.WriteLine("Ввод вектора");
  55. vector.Read();
  56. Console.WriteLine("\nВвод матрицы");
  57. matrix.Read();
  58. Console.Clear();
  59. Matrix result = vector.Multiple(matrix);
  60. Console.WriteLine("Вектор");
  61. vector.Print();
  62. Console.WriteLine("\nМатрица");
  63. matrix.Print();
  64. Console.WriteLine("\nРезультат умножения матрицы на вектор");
  65. result.Print();
  66. Console.WriteLine("\nМаксимальное число в векторе");
  67. Console.WriteLine("\nНажмите любую клавишу для выхода из программы");
  68. Console.ReadKey(true);
  69. }
  70. }
  71. }

Решение задачи: «Найти максимальное число в векторе и вывести его»

textual
Листинг программы
  1. public static void Main(string[] args)
  2. {
  3.     Matrix vector = new Matrix(1, 4);
  4.     Matrix matrix = new Matrix(4, 4);
  5.     Console.Clear();
  6.     Console.WriteLine("Ввод вектора");
  7.     vector.Read();
  8.     Console.WriteLine("\nВвод матрицы");
  9.     matrix.Read();
  10.     Console.Clear();
  11.     Matrix result = vector.Multiple(matrix);
  12.     Console.WriteLine("Вектор");
  13.     vector.Print();
  14.     Console.WriteLine("\nМатрица");
  15.     matrix.Print();
  16.     Console.WriteLine("\nРезультат умножения матрицы на вектор");
  17.     result.Print();
  18.     Console.WriteLine("\nМаксимальное число в векторе");
  19.  
  20.     Console.WriteLine(vector.maxValue);/*<- добавь эту строку (1)*/
  21.  
  22.     Console.WriteLine("\nНажмите любую клавишу для выхода из программы");
  23.     Console.ReadKey(true);
  24. }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

5   голосов , оценка 4.2 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы