运算符
文章目录
一、算术运算符
基本四则运算符:+ - * / %
1、除法
- 代码示例:
public class TestDemo {
public static void main(String[] args) {
System.out.println(5/2);
System.out.println(5.0/2);
System.out.println((float)5/2);
System.out.println((float)(5/2));
}
}
运行结果:(自己的答案:2 2.5 2.5 2.0)
2
2.5
2.5
2.0
- 代码示例:(不能除0)
public class TestDemo {
public static void main(String[] args) {