Skip to content

Commit

Permalink
Fix typos and grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
plazum authored Apr 24, 2019
1 parent ebb7009 commit b8f8177
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions twelve_biubiu.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ int init() {
}
int main() {
set_curve(CURVE_NATURAL); // 自然曲线耗费燃料最少
for (int i :range(0, 12, 1)) {
for (int i = 0; i < 12; i++) {
engine_start();
wait_engine(ENGINE_STATE_CHAGNE);
wait_engine(ENGINE_STATE_CHANGE);
sleep(2000);
engin_stop();
wait_engine(ENGINE_STATE_CHAGNE);
engine_stop();
wait_engine(ENGINE_STATE_CHANGE);
sleep(4000); // 这个时长在模拟器里听起来更像心跳
}
return 0;
Expand Down

0 comments on commit b8f8177

Please sign in to comment.