摘要:
++与--只能操作变量不能操作字面量 注意事项 package com.itheima.operator;public class Operator2 { public static void main(String[] args) { int i = 1; int res = ++i;//放在变量 阅读全文
摘要:
1基本的算术运算符 package com.itheima.operator; public class operator1 { public static void main(String[] args) { //目标:掌握基本的算术运算符的使用 int a=10; int b=2; System 阅读全文