Answer to Question #13830 in C++ for shalenee

Question #13830
(finding numbers divisible by 5 and 6 using loops in C++) write a program that displays, ten numbers per line, all the numbers from 100 to 1000 that are divisible by 5 and 6.
1
Expert's answer
2012-08-31T08:09:58-0400
#include <iostream>
using namespace std;

int main(){
int k = 0;
for (int i = 100 ; i < 1000 ; i++){
& if ((i%5 == 0) && (i%6 == 0)) {
& k++;
&
& cout<<i<<' ';

& if (k == 10) {
& k = 0;
& cout<<endl;
& }
& }
}


system("pause");
return 0;
}

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
APPROVED BY CLIENTS