Home Computer Tutorials Computer Knowledge Write Java to implement the guessing game!

Write Java to implement the guessing game!

Jan 16, 2024 pm 09:33 PM
Obstacle race game source code

Write Java to implement the guessing game!

java guessing game code!

import java.io.BufferedReader;

import java.io.IOException;

import java.io.InputStreamReader;

import java.util.Random;

public class FingerGuessing {

private String[] op = new String[] { "cloth", "scissors", "stone" };

Random r = new Random();

private int wj = 0;

private int dn = 0;

private int count = 0;

private int go() {

int k = r.nextInt(3);

System.out.println("Computer:" op[k]);

return k;

}

private void compare(int i) {

count ;

System.out.println("Player:" op[i - 1]);

int k = go();

if (i - 1 == k) {

System.out.println("tie");

} else if ( i - 1 - k == 1 || i-1-k == -2) {

System.out.println("Player wins");

wj ;

} else {

System.out.println("Computer wins");

dn ;

}

}

private void info() {

System.out.println("total" count "disk");

System.out.println("Player wins" wj "disk");

System.out.println ("Computer wins" dn "disk");

System.out.println ("tie" (count-wj-dn) "disk");

}

public void start() {

String xz = """;

BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

do {

System.out.println("\nPlease select:\n1. Paper\n2. Scissors\n3. Stone\nPlease enter exit when finished");

try {

xz = br.readLine();

if (xz.equalsIgnoreCase("exit")) {

info();

continue;

}

if (!xz.equals("1") & !xz.equals("2") & !xz.equals("3")) {

System.out.println ("Wrong selection, please select again");

continue;

}

compare(Integer.parseInt(xz));

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

} while (!xz.equals("exit"));

}

/**

* @param args

*/

public static void main(String[] args) {

// TODO Auto-generated method stub

new FingerGuessing().start();

}

}

C language guessing game code

#include

#include

#include

void main()

{

int rand_0(void);

int game(int inp);

int start,yes=1,inp,inp_1=1;

char y;

while(yes) /*Prevent users from entering data other than 1 or 2*/

{

printf("1: Start the game\n2: Ranking list\n");

scanf("%d",&start);

if((start!=1)&(start!=2))

{

printf("Please enter 1 or 2\n");

}

else

yes=0;

}

start:

if(start==1) /*If the user chooses to start the game...*/

{

printf ("You come out?\n1: Rock\n2: Scissors\n3: Paper\n");

while(inp_1) /*Prevent users from entering other data*/

{

scanf("%d",&inp);

if((inp!=1)&(inp!=2)&(inp!=3))

{

printf ("You come out?\n1: Rock\n2: Scissors\n3: Paper\n");

}

else

{

inp_1=0;

switch(game(inp))

{

case 1:printf("\n\nCongratulations, you won!\n\n");break;

case 0:printf("\n\nSorry, you lost!\n\n");break;

case 2:printf("\n\ntie\n\n");break;

}

}

}

}

inp_1=1;

printf("\n\nRestart the game? (y/n)");

scanf("%s",&y);

if((y=='y')||y=='Y')

goto start;

else

return 0;

}

int rand_0(void) /*Get a random number*/

{

int i,rand_1;

srand((unsigned)time(NULL));

for(i=1;i

{

rand_1=rand()%4;

if(rand_1==0) continue;

return(rand_1);

}

}

int game(int inp)

{

int random,win; /*win variable, 1 means win, 2 means draw, 0 means lose*/

random=rand_0();

switch(inp)

{

case 1:if(random==3) return win=0;

else if(random==2) return win=1;

else return win=2;

case 2:if(random==3) return win=1;

else if(random==2) return win=2;

else return win=0;

case 3:if(random==3) return win=2;

else if(random==2) return win=1;

else return win=0;

}

}

Just did a little bit. . .

The above is the detailed content of Write Java to implement the guessing game!. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1655
14
PHP Tutorial
1252
29
C# Tutorial
1226
24
How to Fix the Steam Cloud Error? Try These Methods How to Fix the Steam Cloud Error? Try These Methods Apr 04, 2025 am 01:51 AM

The Steam Cloud error can be caused by many reasons. To play a game smoothly, you need to take some measures to remove this error before you launch the game. php.cn Software introduces some best ways as well as more useful information in this post.

Remove PC App Store Malware - A Full Guide for You! Remove PC App Store Malware - A Full Guide for You! Apr 04, 2025 am 01:41 AM

If you have a program called PC App Store on your computer and did not purposely install it, then your PC may be infected with the malware. This post from php.cn introduces how to remove PC App Store malware.

Fixdisk Windows 7: Check Your Hard Disk for Errors on Windows 7 Fixdisk Windows 7: Check Your Hard Disk for Errors on Windows 7 Apr 14, 2025 am 12:40 AM

If you suspect your hard drive encounters issues, you can check the drive for errors on Windows 7. This php.cn post talks about fixdisk Windows 7. You can follow the guide to check the hard drive for errors on Windows 7.

Is Core Isolation Blocked by ew_usbccgpfilter.sys? Here Are Fixes! Is Core Isolation Blocked by ew_usbccgpfilter.sys? Here Are Fixes! Apr 13, 2025 am 12:47 AM

Many SurfaceBook users report that they meet the “core isolation blocked by ew_usbccgpfilter.sys” issue on Windows 11/10. This post from php.cn helps to fix the annoying issue. Keep on your reading.

Effortles Fixes for Black Screen After Installing a Graphics Driver Effortles Fixes for Black Screen After Installing a Graphics Driver Apr 15, 2025 am 12:11 AM

Have you ever encountered a black screen after installing a graphics driver like an Nvidia driver in Windows 10/11? Now in this post from php.cn, you can find a couple of worth trying solutions to the Nvidia driver update black screen.

HackTool:Win64/ExplorerPatcher!MTB - How to Remove? HackTool:Win64/ExplorerPatcher!MTB - How to Remove? Apr 04, 2025 am 01:23 AM

ExplorerPatcher is an Open-Source portable executable that lets you customise the Windows 11 Start Menu, Taskbar, File Explorer, and more. However, many users receive this Trojan warning about HackTool:Win64/ExplorerPatcher!MTB. Why does that happen

How to Install Windows X-Lite Optimum 11 23H2 Home/Pro via ISO How to Install Windows X-Lite Optimum 11 23H2 Home/Pro via ISO Apr 09, 2025 am 12:49 AM

Windows X-Lite Optimum 11 23H2 Home or Optimum 11 Pro could be your option if you need a custom lite system based on Windows 11 23H2. Go on reading and php.cn will show you how to download Optimum 11 23H2 ISO and install Pro or Home on your PC.

Win 11 Builds 22621.3078 and 22631.3078 (KB5034204) Released Win 11 Builds 22621.3078 and 22631.3078 (KB5034204) Released Apr 05, 2025 am 01:35 AM

Want to know the new improvements and bug fixes in Windows 11 KB5034204? Want to how to get Windows 11 KB5034204 on your device? In this post, php.cn Software will introduce the information you want to know.

See all articles