সমস্যা
একটি প্রোগ্রামে একটি সংখ্যা ইতিমধ্যেই কিছু ধ্রুবক থেকে শুরু করা হয়। এখানে, আমাদের ব্যবহারকারীকে সেই সংখ্যাটি অনুমান করতে বলতে হবে যা ইতিমধ্যেই প্রোগ্রামে রয়েছে। এর জন্য, ব্যবহারকারী যতবার নম্বরটি প্রবেশ করে তার জন্য আমাদের কিছু ক্লু প্রদান করতে হবে।
সমাধান
সংখ্যাটি অনুমান করার জন্য যে যুক্তিটি ব্যবহার করা হয় তা নিম্নরূপ -
do{ if(num==guess){ flag=0; } else if(guess<num) { flag=1; printf("Your guess is lower than the number\n"); count++; } else { flag=1; printf("Your guess is greater than the number\n"); count++; } if(flag==1) { printf("sorry wrong enter! once again try it\n"); scanf("%d",&guess); } } while(flag);
উদাহরণ
নম্বর গেম অনুমান করার জন্য সি প্রোগ্রামটি নিচে দেওয়া হল।
#include<stdio.h> main() { int i,num=64,flag=1,guess,count=0; printf("guess the number randomly here are some clues later\n"); scanf("%d",&guess); do { if(num==guess) { flag=0; } else if(guess<num) { flag=1; printf("Your guess is lower than the number\n"); count++; } else { flag=1; printf("Your guess is greater than the number\n"); count++; } if(flag==1) { printf("sorry wrong enter! once again try it\n"); scanf("%d",&guess); } } while(flag); printf("Congratulations! You guessed the correct number %d\n",num); printf("Total number of trails you attempted for guessing is: %d\n",count); }
আউটপুট
যখন উপরের প্রোগ্রামটি কার্যকর করা হয়, তখন এটি নিম্নলিখিত আউটপুট তৈরি করে −
guess the number randomly here are some clues later 45 Your guess is lower than the number sorry wrong enter! once again try it 60 Your guess is lower than the number sorry wrong enter! once again try it 70 Your guess is greater than the number sorry wrong enter! once again try it 65 Your guess is greater than the number sorry wrong enter! once again try it 62 Your guess is lower than the number sorry wrong enter! once again try it 64 Congratulations! You guessed the correct number 64 Total number of trails you attempted for guessing is: 5