Advertisement
Ne-Biolog

Untitled

Feb 27th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. int getInt()
  2. {
  3. int res;
  4.  
  5. while(true) {
  6. if(scanf("%d", &res) && getchar() == '\n') {
  7. return res;
  8. } else {
  9. printf("Try again\n");
  10. while(getchar() != '\n') {}
  11. }
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement