摘要: ++与--只能操作变量不能操作字面量 注意事项 package com.itheima.operator;public class Operator2 { public static void main(String[] args) { int i = 1; int res = ++i;//放在变量 阅读全文
posted @ 2023-11-16 09:10 小彭先森 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1基本的算术运算符 package com.itheima.operator; public class operator1 { public static void main(String[] args) { //目标:掌握基本的算术运算符的使用 int a=10; int b=2; System 阅读全文
posted @ 2023-11-16 09:00 小彭先森 阅读(16) 评论(0) 推荐(0) 编辑