-
查看全部
-
public class HelloWorld{
public static void main(String[] args) {
int one = 10 ;
int two = 20 ;
int three = 0 ;
three=one+two;
System.out.println("three =one + two ==>"+three);
//one+two打印输出;
three+=one;
System.out.println("three += one ==>"+three);
//three+one打印输出
three-=one;
System.out.println("three -= one ==>"+three);
//three-one打印输出
three*=one;
System.out.println("three *= one ==>"+three);
//three*one打印输出
three/=one;
System.out.println("three /= one ==>"+three);
//three/one打印输出
three%=one;
System.out.println("three %= one ==>"+three);
//three%one打印输出,%模等于,指余数等于
}
}
查看全部 -
Ø 算术运算符 +-*/
Ø 赋值运算符 =
Ø 比较运算符 <>!=
Ø 逻辑运算符 ||&&
Ø 条件运算符 if else end foreach
查看全部 -
可以使用javadoc命令提取注释
查看全部 -
threee 的值在变化
查看全部 -
查看全部
-
int A =new Scanner(System.in).nextInt();
使用Scanner工具类接收用户输入的信息
格式:
String 变量=new Scanner(System.in).next();---接收字符串
int 变量=new Scanner(System.in).nextInt();---接收数值
查看全部 -
常量名一般使用大写字符查看全部
-
Java常量的使用 final 常量名 = 值;查看全部
-
变量名由多单词组成时,第一个单词的首字母小写,其后单词的首字母大写,俗称骆驼式命名法(也称驼峰命名法),如 myAge查看全部
-
//创建两个对象,将其中一个对象的名字设为张三,地址为中山,另一个对象名字设为李四,地址设为深圳。输出他们的名字和地址。
public class HelloWorld{
private String name; //名字
private String address; //地址
public String a() {
return name;
}
public void b(String x) {
name=x;
}
public String c() {
return address;
}
public void d(String z) {
address=z;
}
public void e() {
System.out.println(name+"的地址为"+address);
}
public static void main(String[] args){
String n1="张三";
String n2="中山";
HelloWorld zs=new HelloWorld();
zs.b(n1);
zs.d(n2);
zs.e();
String n3="李四";
String n4="深圳";
HelloWorld ls=new HelloWorld();
zs.b(n3);
zs.d(n4);
zs.e();
}
}
查看全部 -
基本数据类型
查看全部
举报