ساخت بازی حدس اعداد با C

به نام خدا

سلامی دوباره

خوبید؟

توی این پست میخوایم یک بازی حدس اعداد ساده با هم بسازیم

با من همراه باش..

کد های بازی:

#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
int main()
{
  int magic, guess;
  char ans = 'y';
  magic = rand();
  do {
      printf(&quot\n Guess the the number:&quot);
      scanf(&quot%d&quot, &guess);
      if(guess == magic) {
     printf(&quot\n***** you are very clever *****&quot);
     printf(&quot\n %d is the magic number.&quot, magic);
     getch();
     ans = 'n'; 
      }
      else {
     printf(&quot\n_NO_&quot);
     if(guess > magic)
        printf(&quot\n your guess is too high.&quot);
     else
        printf(&quot\n your guess is too low.&quot);
     printf(&quot\n Do you want to continue?(y/n):&quot);
     ans = getche();
      }
  } while(ans == 'y');
  return 0;
}

#include <stdio.h>

#include <stdlib.h>

#include <conio.h>

int main()

{

int magic, guess;

char ans = 'y';

magic = rand();

do {

printf("\n Guess the the number:");

scanf("%d", &guess);

if(guess == magic) {

printf("\n***** you are very clever *****");

printf("\n %d is the magic number.", magic);

getch();

ans = 'n';

}

else {

printf("\n_NO_");

if(guess > magic)

printf("\n your guess is too high.");

else

printf("\n your guess is too low.");

printf("\n Do you want to continue?(y/n):");

ans = getche();

}

} while(ans == 'y');

return 0;

}

file:///C:/Users/stockland/Downloads/range.html

خروجی:

easy!!!

اگر خوشت اومد لایک و فالو فراموش نشه

تا جلسه ی بعدی خدانگهدار

(❁´◡`❁)