ساخت بازی حدس اعداد با جاوا

به نام خدا

میخوایم اولین پست جاوامون رو با هم شروع کنیم

و میخوایم با ساخت یک بازی شروعش کنیم

بازی حدس اعداد

کد های بازی حدس اعداد با جاوا:
// Java program for the above approach
import java.util.Scanner;

public class GFG {

	// Function that implements the
	// number guessing game
	public static void
	guessingNumberGame()
	{
		// Scanner Class
		Scanner sc = new Scanner(System.in);

		// Generate the numbers
		int number = 1 + (int)(100
							* Math.random());

		// Given K trials
		int K = 5;

		int i, guess;

		System.out.println(
			&quotA number is chosen&quot
			+ &quot between 1 to 100.&quot
			+ &quotGuess the number&quot
			+ &quot within 5 trials.&quot);

		// Iterate over K Trials
		for (i = 0; i < K; i++) {

			System.out.println(
				&quotGuess the number:&quot);

			// Take input for guessing
			guess = sc.nextInt();

			// If the number is guessed
			if (number == guess) {
				System.out.println(
					&quotCongratulations!&quot
					+ &quot You guessed the number.&quot);
				break;
			}
			else if (number > guess
					&& i != K - 1) {
				System.out.println(
					&quotThe number is &quot
					+ &quotgreater than &quot + guess);
			}
			else if (number < guess
					&& i != K - 1) {
				System.out.println(
					&quotThe number is&quot
					+ &quot less than &quot + guess);
			}
		}

		if (i == K) {
			System.out.println(
				&quotYou have exhausted&quot
				+ &quot K trials.&quot);

			System.out.println(
				&quotThe number was &quot + number);
		}
	}

	// Driver Code
	public static void
	main(String arg[])
	{

		// Function Call
		guessingNumberGame();
	}
}




این بازی به صورت کنسولی هستش

خروجی:

خروجی
خروجی


اگر از این پست لذت بردید حتما من رو حمایت کنید

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