Guest User

Untitled

a guest
Jul 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. #include <ctype.h>
  2. #include <stdio.h>
  3. #include <iostream>
  4. #include <stdlib.h>
  5.  
  6. using namespace std;
  7.  
  8. int main()
  9. {
  10. char numero;
  11. for(;;){
  12. cout<<"inserisci un numero"<<endl;
  13. while( (numero = getchar()) != '\n' )
  14. if(isdigit (numero)){
  15. cout<<"e' un numero"<<endl;
  16. system("PAUSE");
  17. }else{
  18. cout<<"e un non numero"<<endl;
  19. system("pause");
  20. }
  21. }
  22. }
Add Comment
Please, Sign In to add comment