main ()
{
int segreto, ipotesi;
/* initialize random seed: */
srand ( time(NULL) );
/* genera il numero segreto: */
segreto= rand() % 10 + 1;
do {
printf ("indovina un numero (1 to 10): ");
scanf ("%d",&ipotesi);
if (segreto
} while (segreto!=ipotesi);
puts ("congratulazioni!");
}
3 commenti:
Non c'ho capito molto prof. però ho trovato un sito molto interessante sul linguaggio c:
http://programmazione.html.it/guide/leggi/32/guida-c/
capito tutto, entro domenica sera avrà il programma, se farò in tempo anche quello del "forza quattro"
Posta un commento