Bilgisayar random olarak 1 ile 1000 arasinda bir sayı tutuyor ve sizden bunu tahmin etmenizi bekliyor. Eğer söylediğiniz sayı bilgisayarın tahmininden küçükse LOW diyor. Büyükse HIGH diyor. Bunları göz önüne alarak bilgisayarın tuttuğu sayıyı bulmaya çalışıyorsunuz.


 


#include <stdio.h>
#include <stdlib.h>
void guessGame(void);
void guessGame(void)
{
randomize();
int x,answer;
int devam;
x=1+rand()%1000;
guess: printf(“Please type your guess
“);
scanf(“%i”,&answer);
if(answer==x)
{
printf(“Excellent You guessed the number
“);
printf(“would you like to continue?(y/n)”);
scanf(“%i”,&devam);
 if(devam==1){
 goto guess;}


}
else if(answer>x){
printf(“Too high. Try Again
“);
goto guess;
}
else if(answer<x){
printf(“too low. Try Again
“);
goto guess;
}
}
main()
{
printf(“I have a number between 1 and 1000
“);
printf(“Can you guess my number?”);
guessGame();


return 0;
}


Kaynak: Doğu Akdeniz Univ. CSIT Labworks
belgesi-414
Belgeci

Share
Published by
Belgeci

Recent Posts

Fecr-i ati Edebiyatı

FECRİ ATİ EDEBİYATI   Servet-i fünun edebiyatının devamı niteliğinde olan fecr-i ati topluluğu,1909 yılında ortaya…

5 saat ago

İlk Cep Telefonu

ÖZELLİKLER: Boyut: 28x8x6 cm Ağırlık: 850gr Ekran: Yok Devre sayısı: 30 Konuşma süresi: 35 dakika…

17 saat ago

Basic Grammar-Questions

There are two kinds of questions: yes or no questions and wh- questions. You ask…

1 gün ago

Basic Grammar-Positive And Negative Sentences

A positive sentence tells you that something is so. A sentence that tells you something…

2 gün ago

Basic Grammar-The Imperative

Use the base form of a verb to give commands or make direct requests. This…

2 gün ago

Basic Grammar-Sentences

A sentence is a group of words that expresses a complete thought. A sentence must…

3 gün ago