?? sweetie1.c
字號(hào):
// sweetie1.c -- a counting loop
#include <stdio.h>
int main(void)
{
const int NUMBER = 22;
int count = 1; // initialization
while (count <= NUMBER) // test
{
printf("Be my Valentine!\n"); // action
count++; // update count
}
return 0;
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -