123456789101112131415161718192021
#include <iostream> #include <conio.h> #include <string> using namespace std; int main() { int answer; string question[5] = {"What does the fox say?", "Sino ka?", "1+1 = ?", "What is asked?", "What is given"}; string questionNumber[5] = {"Question no. 1", "Question no. 2", "Question no. 3", "Question no. 4", "Question no. 5"}; for (int x = 0;x <= 5;x++) { cout << questionNumber[x] << " " << question[x]; cout << endl << endl; } getch(); return 0; }
for (int x = 0;x < 5;x++)