Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- void betu(string);
- int main()
- {
- string s;
- getline(cin,s);
- betu(s);
- return 0;
- }
- void betu(string s)
- {
- if(isalpha(s))
- {
- cout<<"betu";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment