int score = 53;
int count = 0;
System.out.println("加分前成绩:"+ score);
while(score <= 60)
{
score =+ 1;
count++;
}
System.out.println("加分后成绩:"+ score);
System.out.println("共加了:"+ count+"次!");
int count = 0;
System.out.println("加分前成绩:"+ score);
while(score <= 60)
{
score =+ 1;
count++;
}
System.out.println("加分后成绩:"+ score);
System.out.println("共加了:"+ count+"次!");
public class HelloWorld{
public static void main(String[] args) { String $1="我爱慕课网";
System.out.printIn($1);
String $2="www.imooc.com";
System.out.printIn($2);
}
}
请问这个代码哪里错了,为什么右侧显示编译有两处错误??
public static void main(String[] args) { String $1="我爱慕课网";
System.out.printIn($1);
String $2="www.imooc.com";
System.out.printIn($2);
}
}
请问这个代码哪里错了,为什么右侧显示编译有两处错误??
2015-05-22