Giter Club home page Giter Club logo

numberguessinggame's Introduction

NumberGuessingGame

import java.util.Random; import java.util.Scanner;

public class NumberGuessingGame {

public static void main(String[] args) {
	Scanner sc=new Scanner(System.in);//to take user Input
	String play="yes";
	while(play.equals("yes")) {       //if you are going to play the game again
		Random random=new Random();
		int randnum=random.nextInt(100);
		int guess=-1;
		int tries=0;
	while(guess!=randnum) {           //check if the game is over
		System.out.println("Guess a num between 1 and 100!");
		guess=sc.nextInt();
		tries++;
	if(guess==randnum) {              //check whether the number is been guessed or not!
		System.out.println("==================================");
		System.out.println("Awesome! You guessed the number!");
		System.out.println("It only took you\t"+tries+"\tGuesses!");
		System.out.println("==================================");
		System.out.println("Would you like to play again?Yes or No:");
		play=sc.next().toLowerCase();
		
	}
	else if(guess>randnum) {
		System.out.println("Your guess is to high, Try Again!");
	}
	else {
		System.out.println("Your guess is too Low, Try Again!");
	}
	}
	}

}

}

numberguessinggame's People

Contributors

khushikunte avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.