modulusexample.java
来自「it is a good tool to help you study java」· Java 代码 · 共 10 行
JAVA
10 行
//This programe demonstrates the % operator
class ModulusExample{
public static void main(String args[]){
int x=58;
double y=58.29;
System.out.println("x mod 10="+x%10);
System.out.println("y mod 10="+y%10);
}
}
//浮点数的取模运算可以有小数
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?