Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Biblioteca
- #include <stdio.h>
- #include <ctype.h>
- int main()
- {
- int i = 0;
- char texto[100];
- printf("\n Digite o texto \n ->");
- scanf("%s", texto);
- while( texto[i] != '\0' )
- {
- // Verificação: O caractere está maiúsculo ? sim(Color em minúsculo) : nao
- if( isupper(texto[i]) )
- {
- printf("%c", tolower(texto[i]));
- }
- // Verificação: O caractere está minúsculo ? sim((Color em maiúsculo) : nao
- if( islower(texto[i]) )
- {
- printf("%c", toupper(texto[i]));
- }
- i++;
- }
- return(0);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement