标签:java
从键盘输入:
import java.util.Scanner;
public class ScannerDemo {
public static void main(String[] args) {
System.out.print("请输入一个整数:");
Scanner scanner = new Scanner(System.in);
int num = scanner.nextInt();
System.out.println(num);
}
}
if 条件
int score = 6; //以下条件是互斥的,只要满足一个条件,其他的就不执行
if (score >= 90 && score<=100) {
System.out.println("优秀");
} else if (score >= 80) { //无需写 score<90 && score >=80
System.out.println("良好");
} else if (score >= 60) {
System.out.println("较好");
} else {
System.out.println("不及格");
//如果用以下格式,则性能会降低一些,因为会都执行语句,而以上的条件语句是互斥的。
if () {}
if () {}
if () {}
if () {}
for循环:
for(int i=2;i<=100;i+=2) { //效率更高一些
System.out.println(i);
}
for(int i=1;i<=100;i++) { //效率不高
if (i%2==0) {
System.out.println(i);
}
}
标签:java
原文地址:http://11009785.blog.51cto.com/10999785/1981015