Advertisement
Josif_tepe

Untitled

Jan 8th, 2025
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.76 KB | None | 0 0
  1. #include <iostream>
  2. #include <ctype.h>
  3. using namespace std;
  4.  
  5.  
  6. int main() {
  7.     int k;
  8.     cin >> k;
  9.    
  10.     char niza[1000];
  11.     cin.getline(niza, 1000);
  12.    
  13.     cin.getline(niza, 1000);
  14.         for(int i = 0; i < strlen(niza); i++) {
  15.             if(isalpha(niza[i])) {
  16.                 char c = tolower(niza[i]);
  17.                 if(c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u') {
  18.                     for(int j = 0; j < k; j++) {
  19.                         cout << niza[i];
  20.                     }
  21.                 }
  22.                 else {
  23.                     cout << niza[i];
  24.                 }
  25.                
  26.                
  27.             }
  28.             else {
  29.                 cout << niza[i];
  30.             }
  31.        
  32.     }
  33.  
  34.     return 0;
  35. }
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement