摘要: # 循环语句 ## For循环 ### 基本语法 for(循环变量初始值;循环条件;循环变量迭代){ ​ 代码块; } ### 执行流程 ![image-20230813142122790](https://img2023.cnblogs.com/blog/2400516/202308/240051 阅读全文
posted @ 2023-08-14 15:48 小Y的开发笔记 阅读(37) 评论(0) 推荐(0)
摘要: # 记录一次错误 ```java 需求:输出一个爱心 *** *** ********* ******* ***** *** * public class ForExer{ public static void main(String[] args) { for (int i = 6 ; i >= 阅读全文
posted @ 2023-08-14 15:48 小Y的开发笔记 阅读(15) 评论(0) 推荐(0)