***思绪混乱***
1. i++是先使用后加1;++i是加1后使用。
2. Scanner sca= new Scanner(System.in);
int a =sca.nextInt
3.if条件选择结构:基本if条件结构:
Scanner input =new Scanner(System.in);
System.out.print(“输入张浩的Java成绩:”);
int score=input.nextInt();
if(score>98 ){
System.out.println("老师说:不错,奖励一个本子”);
4.多重if结构:
int score=70;
if (score>=90){
System.out.println("优秀");
}else if (score>=80){
System.out.println("良好");
}else if (score>=60){
System,out,println("中等");
}else{
System.out.println("差");
5.switch语句:
int x;
Scanner sc = new Scanner(System.in);
x=sc.nextInt();
switch(x) {
case 1:System.out.println("星期一");break;
case 2:System.out.println("星期二");break;
case 3:System.out.println("星期三");break;
case 4:System.out.println("星期四");break;
case 5:System.out.println("星期五");break;
case 6:System.out.println("星期六");break;
case 7:System.out.println("星期日");
转载自原文链接, 如需删除请联系管理员。
原文链接:思绪混乱,转载请注明来源!