已采纳回答 / lolmbp
可以,但不建议。例如平均值,两者均能正常编译运行,但后者更规范double pingJunZhi; // baddouble avg; // good
2021-07-02
最赞回答 / qq_慕数据7542031
default的位置对执行结果没有影响。关键看default有没有使用break,使用了break会跳出,不使用break会执行剩下的代码。
2021-07-02
public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
int i,j;
count=num;
for(i=0;i<9;i++){
count=count/10;
if(count==0){
System.out.println("它是个"+(i+1)+"位的数!");
break;
}
}
}
}
public static void main(String[] args){
int num = 999;
int count = 0;
int i,j;
count=num;
for(i=0;i<9;i++){
count=count/10;
if(count==0){
System.out.println("它是个"+(i+1)+"位的数!");
break;
}
}
}
}
int zhou = new Scanner(System.in).nextInt();
if(zhou>0&&zhou<=35){
for(int yue=zhou-zhou%4;yue<contentList.length&&yue<zhou+3;yue++){
if(zhou-1==yue){
System.out.print("√");
}
System.out.println(contentList[yue]);
}
}else System.out.println("您输入的周暂时没有计划");
这个够简略吧
if(zhou>0&&zhou<=35){
for(int yue=zhou-zhou%4;yue<contentList.length&&yue<zhou+3;yue++){
if(zhou-1==yue){
System.out.print("√");
}
System.out.println(contentList[yue]);
}
}else System.out.println("您输入的周暂时没有计划");
这个够简略吧
2021-06-28