1
« en: Domingo 9 de Noviembre de 2008, 21:03 »
Aqui esta el codigo funcional, te faltaban algunas cosas, como tambien tenias un error de colocar ; en una declaracion if
#include <stdio.h>
int main()
{
int cont = 36,num,oport,i,nota;
char tornar;
for (i = 1; i<=10; i++)
{
printf("Escriba un numero: n");
scanf("%d" ,&num);
if (num == cont)
{
printf("Felicitaciones Has acertado el numero n");
nota = 11 - i;
printf("Tu nota es: %d n", nota);
scanf("%s",&tornar);
return 0;
}
else
{
oport = 10 - i;
printf("Te quedan %d oportunitats n",oport);
printf("Escribe otro numero: n");
}
printf("Volver a jugar [S,N]: n");
scanf("%s",&tornar);
if (tornar == 'N')
return 0;
}
return 0;
}