Advertisement
Lucky134Lucky

Untitled

Feb 29th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.  
  8.  
  9. while (true) {
  10. int n;
  11. cin>>n;
  12.  
  13. if(!cin>>n) {
  14.  
  15. cout<<"Vvedi cifru";
  16. cin.clear();
  17. while(cin.get() != '\n') ;
  18. }
  19. else
  20. cout<<"cifra";
  21.  
  22.  
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement