Java If Else usage

Source: Internet
Author: User

1. Import the Scanner class
Import Java.util.Scanner;


Class testif{
public static void Main (String [] args) {

Create a Scanner object
Scanner Scanner = new Scanner (system.in);
3. Get the integer entered
System.out.print ("i =");
int i = Scanner.nextint ();

System.out.println ("I for Input:" + i);



int age = 10;

if (age > 24) {
SYSTEM.OUT.PRINTLN ("University Graduate");

}
else if (age > 20) {
System.out.println ("High school Graduation");
}

else if (age > 17) {
System.out.println ("Junior High school Graduation");
}

else if (age > 14) {
SYSTEM.OUT.PRINTLN ("Primary school Graduation");
}

else if (age > 8) {
SYSTEM.OUT.PRINTLN ("primary School");
}
else {
System.out.println ("Not on primary school");
}



}



}

Java If Else usage

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.