item.c
来自「包含按键扫描」· C语言 代码 · 共 16 行
C
16 行
#include <stdio.h>
void main()
{
int counter = 1; // Initialize the control variable
while (counter <= 100) // Test the control variable
{
printf("%d ", counter); // Execute the statements
counter++; // Modify the control variable
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?