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
public class HelloWorld{
public static void main(String[] args) {
String imooc="我爱慕课网";
String myImooc="www.imooc.com";
System.out.println(imooc+myImooc);
}
}
public static void main(String[] args) {
String imooc="我爱慕课网";
String myImooc="www.imooc.com";
System.out.println(imooc+myImooc);
}
}
2022-06-17
https://www.jetbrains.com.cn/idea/download/other.html这个网址可以选版本
2022-06-16