二元运算符运算规则:
整数运算:
1.如果有两个操作数有一个为long,则结果也为long。
2.没有long时,结果为int。即使操作数全是short,byte结果也是int。
浮点运算:
1.如果两个操作数一个为double,则结果为double。
2.只有两个操作数都是float,结果才为float。
取模运算:
其操作数可以为浮点数,一般用整数,结果是“余数”,“余数”符号和左边操作数相同。
如:7%3=1,-7%3=-1,7%-3=1
public class Firstproj {
public static void main(String[] args) {
byte a = 1;
int b = 2;
long c = 3;