提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
如何使用Java模运算符(%)。
/**from 时 代 J a v a 公 众 号 - nowjava.com**/ public class Main { public static void main(String[] args) { System.out.println("Java Modulus Operator example"); int i = 50; double d = 32; System.out.println("i mod 10 = " + i%10); System.out.println("d mod 10 = " + d%10); } }