Advertisement
Guest User

zadanie 1

a guest
Oct 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     for(int i=3;i<33;i++)
  8.     {
  9.         if(i%4!=0)
  10.         {
  11.             cout<<i<<" ";
  12.         }
  13.     }
  14.  
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement