public class HelloWorld{
public static void main(String[] args) {
int score=68;
if(score>60||score==60){
System.out.println("考试成绩合格");
}else{System.out.println("考试成绩不合格");
}}}
public static void main(String[] args) {
int score=68;
if(score>60||score==60){
System.out.println("考试成绩合格");
}else{System.out.println("考试成绩不合格");
}}}
2020-08-22
if(score>60||score==60){
System.out.println("考试成绩合格");
}else{System.out.println("考试成绩不合格");
}
}
}
System.out.println("考试成绩合格");
}else{System.out.println("考试成绩不合格");
}
}
}
2020-08-22
public class HelloWorld {
public static void main(String[] args) {
int score = 53;
int count = 0;
System.out.println("加分前成绩"+score);
for(int srore=53;score<60;score++){count++;}
System.out.println("加分后成绩"+score+"共加了"+count+"次"}}
public static void main(String[] args) {
int score = 53;
int count = 0;
System.out.println("加分前成绩"+score);
for(int srore=53;score<60;score++){count++;}
System.out.println("加分后成绩"+score+"共加了"+count+"次"}}
int score = 94;
String sex = "女";
if(score > 80){
if(sex == "女"){
System.out.println("进入女子组决赛");
}else{
System.out.println("进入男子组决赛");
}
}else{
System.out.println("成绩不合格被淘汰");
}
String sex = "女";
if(score > 80){
if(sex == "女"){
System.out.println("进入女子组决赛");
}else{
System.out.println("进入男子组决赛");
}
}else{
System.out.println("成绩不合格被淘汰");
}
2020-08-21
代码可以更完善一点,比如我们可以在老年那里附加一个条件,年龄要小于100岁,不然我们写1000岁都可以了。最后18岁那里再附加一个小于0的条件,这样输入的年龄也不能小于0;最后else 你输入的年龄有误请重新输入。我们可以不设置常量,用Scanner关键字,键盘输入年龄程序来判定中老年还是少年。用if语句也可以练练月份的春夏秋冬,可以联想到好多的。
2020-08-21
city未赋值,给他赋值就可以了。
public class HelloWorld{
public static void main(String[] args) {
String city;
city = "广西";
System.out.println("我的家乡在:"+city);
}
}
public class HelloWorld{
public static void main(String[] args) {
String city;
city = "广西";
System.out.println("我的家乡在:"+city);
}
}
2020-08-21
已采纳回答 / qq_慕圣5548304
第22行,你的意思是成绩小于0并且成绩大于一百,两个是冲突的,就执行了前面半句,只去掉了-23.括号里改成scores[i]<0||scores[i]>100,就好了
2020-08-19