?? liftoff.c
字號:
/* * File: liftoff.c * --------------- * Simulates a countdown for a rocket launch. */#include <stdio.h>#include "genlib.h"/* * Constant: StartingCount * ----------------------- * Change this constant to use a different starting value * for the countdown. */#define StartingCount 10/* Main program */main(){ int t; for (t = StartingCount; t >= 0; t--) { printf("%2d\n", t); } printf("Liftoff!\n");}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -