Advertisement
Ne-Biolog

Untitled

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