Advertisement
Guest User

Programa

a guest
Feb 4th, 2016
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <iostream>
  3. #include <cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7. int celbroj;
  8.  
  9. do
  10. {
  11. cout<<"Vnesi cel broj: "<<endl;
  12. cin>>celbroj;
  13. }
  14. while (celbroj % 1 == 0);
  15.  
  16.  
  17. system("PAUSE");
  18. return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement