1 2 3 4 5 6 7 8 9 10 11
#pragma once #include <iostream> #include<iomanip> #include<string> using namespace std; #define ARRAY_SIZE 10 void readData(int[ARRAY_SIZE][2], string[ARRAY_SIZE][2]); void printData(int[ARRAY_SIZE][2], string[ARRAY_SIZE][2]);