Guest User

Untitled

a guest
May 28th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.   int sum = 0;
  8.   for (int i = 1; i <=100; i++) {
  9.       if (i % 7 == 2) {
  10.           sum += i;
  11.           cout << i << "\t"
  12.       }
  13.   }
  14.   cout <<"\nSumm=" << sum << "\n"
  15.   system("pause");
  16. }
Advertisement
Add Comment
Please, Sign In to add comment