Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <cstdlib>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {string str;
  9. getline(cin,str);
  10. int amount=0;
  11. for(char i : 'a'){
  12. if(i=='a'){
  13. amount++;
  14. }};
  15. cout<<"amount"<<" "<<amount;
  16.  
  17. return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement