Guest User

Untitled

a guest
Sep 22nd, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. void betu(string);
  6.  
  7. int main()
  8. {
  9. string s;
  10. getline(cin,s);
  11. betu(s);
  12. return 0;
  13. }
  14.  
  15. void betu(string s)
  16. {
  17. if(isalpha(s))
  18. {
  19. cout<<"betu";
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment