Guest User

Untitled

a guest
Dec 11th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     int i = 0;
  7.     int total = 0;
  8.  
  9.     while (i < 1000)
  10.     {
  11.         if (i % 3 == 0 || i % 5 == 0)
  12.             total = total + i;
  13.  
  14.         i++;
  15.     }
  16.  
  17.     cout << "The total is: " << total << endl;
  18.  
  19.     system("pause");
  20.     return 0;
  21. }
Add Comment
Please, Sign In to add comment