exactamente, justo lo acabo de sacar yo tambien:
gracias
EDIT: no se como ponerlo bonito la verdad
Código (cpp) [Seleccionar]
#include <stdio.h>
int esVocal (char c);
char sigVocal (char c);
int main ()
{
char c;
do{
if (esVocal(c)) printf("%c", sigVocal(c));
else printf("%c", c);
}while(scanf("%c", &c)!=EOF);
return 0;
}
int esVocal (char c){
return
(c=='a'||c=='e'||c=='i'||c=='o'||c=='u');
}
char sigVocal (char c){
switch(c){
case 'a': c='e'; break;
case 'e': c='i'; break;
case 'i': c='o'; break;
case 'o': c='u'; break;
case 'u': c='a'; break;
}
return (c);
}
gracias
EDIT: no se como ponerlo bonito la verdad