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,37 @@
# 主方法
```c++
int main(){ // 主方法 所有的代码都要从这里开始
// 要执行的代码都要写在这里
return 0; // 返回值 告诉电脑,任务完成 (这个汉堡包做好了,可以端上餐桌)
}
```
# 一、对象
```c++
hero // hero就是一个对象
```
# 二、方法
```c++
// .行为() 这个就是一个方法
hero.moveRight(); // 英雄向右移动
hero.moveLeft(); // 英雄向左移动
hero.moveUp(); // 英雄向上移动
hero.moveDown(); // 向下移动
```
# 三、参数
```c++
// 括号里面写的就是参数
hero.moveRight(3); // 向右移动三次
hero.say("你好,洋洋"); // 英雄说话
hero.attack("Two"); // 攻击Two这个怪物
```
# 四、注释
```c++
// 注释 电脑是不看 是给人看的 提示这段代码有什么作用
```