基本运算符
基本运算符
算数运算符:+, -, *, /, %, int a=10;
int b=20;
int c=25;
int d=25;
int e=21;
Systen.out.pritnln(a+b);//30
Systen.out.pritnln(a-b);//-10
Systen.out.pritnln(a*b);//200
Systen.out.println(a/(double)b);//0.5
//取余或模运算
Systen.out.println(e%a);//21/10=2、、、、、1
赋值运算符:= long a=123674367L;
int b=123;
short c=12;
byte d=7;
double e=15.4;
Systen.out.pritnln(a+b+c+d);//long
Systen.out.pritnln(b+c+d);//int
Systen.out.pr
基本运算符最先出现在Python成神之路。
共有 0 条评论