I am a beginner in C. I need the program below to read the number entered in the console and give the user tips until he gets it right:
#include <stdio.h>
int main ()
{
int num;
printf("Informe um número entre 0 e 10:\n");
scanf("%d",&num);
while (num!=7)
{
printf("Escolha outro valor:");
scanf("%d",&num);
switch(num)
{
case '0':
printf("Tente outro numero\n");
break;
case '1':
printf("Escolha outro valor\n");
break;
case '2':
printf("Esta longe, tente outro\n");
break;
case '3':
printf("O numero e maior\n");
break;
case '4':
printf("Tente novamente\n");
break;
case '5':
printf("Esta proximo, mas ainda nao e este\n");
break;
case '6':
printf("Ja pensou em tentar um numero impar?\n");
break;
case '8':
printf("Esta proximo\n");
break;
case '9':
printf("Tente um valor menor\n");
break;
case '10':
printf("E um numero menor\n");
break;
default:
printf("Voce acertou");
break;
}
}
}