代码
提交代码
public class ArithmeticExpression1 { public static void main(String[] args) { int num = 10; int result = num / 3; System.out.println( num + " / 3 = " + result); } }
运行结果