Initial commit: 穹狼科创课评反馈生成器

- 添加 CLAUDE.md 项目说明
- 添加评语规则、课程模板、技能库
- 添加 .gitignore 忽略 .env
This commit is contained in:
chengzi
2026-04-14 21:27:19 +08:00
commit 7487e8451a
259 changed files with 14446 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# 一、while循环
```c++
while(循环到条件){ // 当条件成立的时候
// 执行循环到代码
}
```
**注意:**一定要记住循环到结构
# 二、熟练掌握while循环
```c++
// 重复执行向右走两格 然后向上走两格 。。。。
while(true){
hero.moveRight(2);
hero.moveUp(2);
}
```