System.out.println()
-
System.out.println("hello world"); System.out.println("世界 你好"); System.out.println("我今年"+35+"岁"); //括号内可做运算 System.out.println("数值"+(123)); System.out.println("平方"+(123*123)); System.out.println("立方"+(123*123*123));
trick
注释: //
Ctrl+ / 多行注释
Ctrl+shift+/ 多行注释 == /* */
Ctrl+Shift+F 快速風格格式化
(菜單+source+format)
2.变量
//变量三要素 类型 名字 值
int a=123;
int year=2017;
int a=10;
int aa=a*a;
int aaa=a*a*a;
System.out.println("a的平方"+aa);
System.out.println("a的立方"+aaa);
String name1="link";
int age=22;
double weight=75;
String birthday="1998-04-17";
System.out.println("名字:"+name1+" 年龄:"+age+" 体重:"+weight+"生日:"+ birthday) ;
3.boolean
//true or flase 不能是其他的
boolean a=true;
boolean b=false;
System.out.println("a="+ a +" b="+b);
4.算数操作符
// + - * / %
%模运算 求余数
5.逻辑运算符
&& || !
&&
a&&b a和b必须为boolean
a true b true -> true
否则为false
||
a||b a和b必须为boolean
a true and b true -> true
a true or b true -> true
否则为false
!
!a a必须为boolean
a true !a false
a false !a true