Untitled
unknown
plain_text
2 years ago
410 B
6
Indexable
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
srand(time(NULL));
int sayi = rand() % 100;
int tahmin;
int sayac=0;
do {
printf("Tahmin:");
scanf("%d",&tahmin);
printf("Sayiyla tahmin arasindaki fark: %d \n",(sayi-tahmin));
sayac++;
} while( tahmin!=sayi );
printf("Tebrikler, %d. denemede buldun",sayac);
return 0;
}
Editor is loading...
Leave a Comment