1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
int main()
{
string event[3][6]= {
{"one", "two", "three","four", "five", "five"},
{"one", "two", "three","four", "five", "five"},
{"one", "two", "three","four", "five", "five"}
};
for(int time = 0; time < 3; time++)
{
for(int statment = 0; statment < 6; statment++)
{
cout << event[time,statment] << endl << endl;
statment++;
}
time++;
}
return 0;
}
|