Помогите вывести в конце таблицу с данными структуры.
Как это сделать?
Код программы:
#include <iostream>
#include <string>
using namespace std;
struct strc {
string shopName;
int productCode;
int productQuantity;
int productQuantityKG;
int productPrice;
}
mtovar[100];
int main() {
setlocale(LC_ALL, "Russian");
int nst=0, nst2=0, i, j,a;
cout << "Введите кол-во магазинов: ";
cin >> nst2;
cout << endl;
for (j = 1; j <= nst2; j++){
cout << "Введите название " << j << " магазина: ";
cin >> mtovar[j].shopName;
cout << "Количество товаров " << j << " магазина: ";
cin >> mtovar[j].productQuantity;
cout << endl;
for (i = 0; i < mtovar[j].productQuantity; i++) {
cout << "Введите код товара: ";
cin >> mtovar[i].productCode;
cout << "Введите количество товару (у кг): ";
cin >> mtovar[i].productQuantityKG;
cout << "Цена за килограм: ";
cin >> mtovar[i].productPrice;
cout << endl;
}
}
}