search
HomeComputer TutorialsComputer KnowledgeWrite 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
This article is reproduced at:Excel办公网. If there is any infringement, please contact admin@php.cn delete
Fix the 'This Build of Vanguard Is out of Compliance” Error - MiniToolFix the 'This Build of Vanguard Is out of Compliance” Error - MiniToolApr 15, 2025 am 12:50 AM

You may encounter the “this build of Vanguard is out of compliance” issue when attempting to launch Valorant on Windows 11. Why does the error message appear? How to get rid of the error message? This post from php.cn gives details.

How to Download RTX 4050 Drivers on Windows 10/11?How to Download RTX 4050 Drivers on Windows 10/11?Apr 15, 2025 am 12:49 AM

NVIDIA GeForce RTX 40 series GPU might not be a new thing to you. Compared with other top graphics cards, many of you may pay more attention to mid-end mainstream RTX 4050 for its acceptable price. Read through this guide from php.cn Website to get d

KB2267602 Fails to Install: Here Is How to Fix It!KB2267602 Fails to Install: Here Is How to Fix It!Apr 15, 2025 am 12:48 AM

KB2267602 is a protection or definition update for Windows Defender designed to fix vulnerabilities and threats in Windows. Some users reported that they were unable to install KB2267602. This post from php.cn introduces how to fix the “KB2267602 fai

Two Ways to Reinstall Pre-installed Software in Windows 11Two Ways to Reinstall Pre-installed Software in Windows 11Apr 15, 2025 am 12:47 AM

Do you know how to reinstall pre-installed software in Windows 11 if you need to do this? In this post, we will introduce two easy ways. In addition, if you want to recover files on your Windows computer, you can try php.cn Power Data Recovery.

Fixed: Desktop and File Folders Do Not Refresh AutomaticallyFixed: Desktop and File Folders Do Not Refresh AutomaticallyApr 15, 2025 am 12:46 AM

Windows Desktop or File Explorer or folder will automatically refresh itself when you make some changes to it. However, some Windows 11/10 users report that they encounter the “desktop and file folders do not refresh automatically” issue. This post f

Fixed: There Is a Problem with This Windows Installer PackageFixed: There Is a Problem with This Windows Installer PackageApr 15, 2025 am 12:45 AM

When you try to install a program on Windows 11/10, you may fail to install it and receive an error message - there is a problem with this Windows installer package. This post from php.cn helps you to fix it.

Can Antivirus Scan Encrypted Files? Security vs. PrivacyCan Antivirus Scan Encrypted Files? Security vs. PrivacyApr 15, 2025 am 12:44 AM

When you run antivirus software on your device, you likely expect it to scan all files and folders for viruses. However, one question arises: can antivirus scan encrypted files? This inquiry delves into the realm of security versus privacy. php.cn So

Free Download or Update HDMI Video Drivers on a Windows PCFree Download or Update HDMI Video Drivers on a Windows PCApr 15, 2025 am 12:43 AM

How to download HDMI video drivers on Windows? How to update HDMI drivers to the latest versions. You can find the ways here. In addition, you can try php.cn Power Data Recovery to get your lost and deleted files back if necessary.

See all articles

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment