摘要: public class jh_01_循环学习需要用到的知识点 { public static void main(String[] args) { int a = 1;// 把数值1赋值给int类型的a a ++;// 对自身加1; System.out.println(a); a --; System.out.println(a); // a <= 10... 阅读全文
posted @ 2019-07-08 15:30 笑傲一生 阅读(548) 评论(0) 推荐(1) 编辑