Answer to Question #15555 in C++ for Josh

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
1
Expert's answer
2012-10-01T10:44:13-0400
#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";
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS