1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
#include <iostream>
#include <string>
using namespace std;
int main()
{
string attacks[4][4] = {{"Burn", "Bite", "Rage", "Heal"}, {"Flood", "Whip", "Cool", "Heal"},{"Quake", "Stomp", "Toughen", "Heal"},{"Gust", "Scream", "Veer", "Heal"}};
for(int row;row<4;row++){
for(int col;col<4;col++){
cout << attacks[row][col] << " ";
}
cout << endl;
}
}
|