Question #15555

How do I write a code that will prompt the user for a positive number, ("max"), and display a table of integers from 1 to "max" with only 5 integers in each row?
(For example: If the user enters "12", It needs to look like this-

1 2 3 4 5
6 7 8 9 10
11 12

Expert's answer

#include<iostream.h>

int max;

void main(){
cout<<"Enter an integer: ";
cin>>max;
for (int i=1; i<=max; i++){
& cout<<i<<" ";
& if (i%5==0) cout<<"\n";
}
cout<<"\n";
}

LATEST TUTORIALS
APPROVED BY CLIENTS