Angel

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include <stdio.

h>
#include <ctype.h>
#include <stdlib.h>
int main(void) {
char letra;
printf("Inserte\n");
scanf("%c",&letra);
switch(tolower(letra))
{
case 'r': printf("ROJO\n");
break;
case 'v': printf("VERDE\n");
break;
case 'a': printf("AZUL\n");
break;
case 'n': printf("NEGRO\n");
break;
case 'R': printf("ROJO\n");
break;
case 'V': printf("VERDE\n");
break;
case 'A': printf("AZUL\n");
break;
case 'N': printf("NEGRO\n");
break;
default: printf("NEGRO\n");
}
system("pause");
return 0;
}

You might also like