The user wants to display a message a fixed number of times, if you know the message and the number of times (number) it must be displayed what would be the for statement, will this be correct or incorrect ONLY indicate correct or incorrect at your answer space.

for i = 1 to numbe
rdisplay message ~ on new line
next i

for(int i = 0; i<number; i++){

cout<<"on nre line next "<<i;
}

Correct.