Advertisement
Guest User

Moad

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