ниже приведен код, который работает до сих пор, мой вопрос: как мне затем перейти сюда, чтобы включить меню, чтобы можно было выполнять операции с матрицами, которые считываются из текстовых файлов?
Примерами операций могут быть определитель, сложение, вычитание e.t.c.
#include <iostream> //declaring variables
#include <iomanip>
#include <string>
#include <fstream>
using namespace std;
string code(string& line);
int main()
{
int MatrixA[3][3] = {{1,0,0},{0,2,0},{0,0,3}};
ofstream outf;
ifstream myfile;
string infile;
string line;
string outfile;
cout << "Please enter an input file (A.txt) for Matrix A or (B.txt) for Matrix B" << endl;
cin >> infile; //prompts user for input file
if (infile == "A.txt")
{ //read whats in it and write to screen
myfile.open("A.txt");
cout << endl;
while (getline (myfile, line))
cout << line << endl;
//float elements[9];
//ifstream myfile("A.txt");
//myfile >> elements[0] >> elements[1] >> elements[2];
//myfile >> elements[3] >> elements[4] >> elements[5];
//myfile >> elements[6] >> elements[7] >> elements[8];
//myfile.close();}
else
if (infile == "B.txt")
{
myfile.open("B.txt");
cout << endl;
while (getline (myfile, line))
cout << line << endl;
}
else
{
cout << "Unable to open file." << endl;
}
//{
//while("Choose next operation");
//}return 0;
}
Вы можете написать что-то вроде этого, используя перечисления и оператор switch:
enum options { Operation1, Operation2, Operation3 };
cout << "Operations:\n\n";
cout << "Operation1 - " << Operation1 << "\n";
cout << "Operation2 - " << Operation2 << "\n";
cout << "Operation3 - " << Operation3 << "\n";
cout << "Your choice: ";
int choice;
cin >> choice;
switch (choice)
{
case Operation1:
cout << "You picked Operation1.\n";
break;
case Operation2:
cout << "You picked Operation2.\n";
break;
case Operation3:
cout << "You picked Operation3.\n";
break;
default:
cout << "You made an illegal choice.\n";
break;
}
Как только это будет сделано, вы можете поместить его в цикл while / for, где бы вам ни пришлось это сделать, и завершать работу всякий раз, когда вам это нужно …