Java guessing the system gets random numbers

Source: Internet
Author: User

int randomnumber= (int) (Math.random () *8) +1;

  The comment is: Get a random integer from 1 to 8.

/*************************************************************************
> File Name:GuessNumber.java
> author:ma6174
> Mail: [email protected]
> Created time:2016 October 14 Friday 08:01 14 seconds
************************************************************************/

Import Java.util.Scanner;

Class Guessnumber {
public static void Main (string[] args) {
int randomnumber = (int) (Math.random () *100) + 1;
System.out.println (Randomnumber);

while (true) {

Scanner sc = new Scanner (system.in);
SYSTEM.OUT.PRINTLN ("Pls your guess number 0~100");

int guessnumber = Sc.nextint ();

if (Guessnumber > Randomnumber)
SYSTEM.OUT.PRINTLN ("error = = = guessnumber > randomnumber");
else if (Guessnumber < Randomnumber)
SYSTEM.OUT.PRINTLN ("error = = = Guessnumber < Randomnumber");
Else
{
System.out.println ("Good good boy!!!");
Break
}
}

}
}

Java guessing the system gets random numbers

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.