fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5. int t;
  6. cin>>t;
  7. while(t--)
  8. {
  9. char s[100];
  10. char ar[10001]= {};
  11.  
  12. cin>>s;
  13.  
  14. for(int i=0,j=0; s[i]!='\0'; i++)
  15. {
  16. if(s[i]=='A'||s[i]=='E'||s[i]=='K'||s[i]=='O'||s[i]=='U'||s[i]=='a'||s[i]=='e'||s[i]=='k'||s[i]=='o'||s[i]=='u')
  17. {
  18.  
  19. if(s[i]>='a'&&s[i]<='z')
  20. ar[j++]=s[i]-32;
  21. else
  22. ar[j++]=s[i];
  23. ar[j++]='#';
  24. ar[j++]='#';
  25. }
  26. else
  27. {
  28. continue;
  29. }
  30. }
  31. for(int i=0; ar[i]!='\0'; i++)
  32. {
  33. cout<<ar[i];
  34. }
  35. cout<<endl;
  36. }
  37.  
  38. return 0;
  39. }
  40.  
Success #stdin #stdout 0s 5452KB
stdin
2
Bubt
Hello
stdout
U##
E##O##