Java-day1

System.out.println()

  1.  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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值