7.算术运算符的使用
Posted 许先
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了7.算术运算符的使用相关的知识,希望对你有一定的参考价值。
package test; public class TestCalc { public static void main(String[] args) { System.out.println(6/4); System.out.println(6%4); int i=8; int j=i++ +2; int m=8; int k=++m +2; System.out.println(j); System.out.println(k); } }
以上是关于7.算术运算符的使用的主要内容,如果未能解决你的问题,请参考以下文章