最新回答 / 慕的地3404811
我记得高中数学有学过是为逻辑图,那个就是代码运行的思维图(C语言也会学这个图),刚开始练习的时候建议画一下这个图。其实这个图真的很重要,哪怕是再厉害的高手,在写逻辑相对复杂的代码的时候也需要画图来理清逻辑,你可以慢慢尝试,熟悉了后简单的代码思路就很清晰了
2022-07-15
最新回答 / weixin_慕仰3553582
public class HelloWorld{ public static void main(String[] args){ System.out.println("Hello World"); }public class HelloWorld 这个名字要一致,W应该是大写。}<...code...>搜索复制
2022-07-10
最新回答 / 慕勒9497126
因为你--age1了public class HelloWorld{ public static void main(String[] args) { int age1=24; int age2=18; int age3=36; int age4=27; int sum = age1+age2+age3+age4; double avg = sum/4; int minus = age1-age2; int newAge = --age1; System.out.printl...
2022-07-09
public class HelloWorld{
public static void main(String[] args) {
String a ="我爱慕课网";
String b ="www.imooc.com";
System.out.println(a+"\n"+b);
}
}
public static void main(String[] args) {
String a ="我爱慕课网";
String b ="www.imooc.com";
System.out.println(a+"\n"+b);
}
}
2022-07-06
three=one+two;
int age1=one+two;
int age2=three+=one;
int age3=three-=one;
int age4=three*=one;
int age5=three/=one;
int age6=three%=one;
System.out.println("three=one+two==>"+age1);
下同
int age1=one+two;
int age2=three+=one;
int age3=three-=one;
int age4=three*=one;
int age5=three/=one;
int age6=three%=one;
System.out.println("three=one+two==>"+age1);
下同
2022-07-06