C语言 | for循环 | 笔记 落贯一 2025-11-22 31 阅读1分钟 #include <stdio.h> int main (){ int j; for(j=1;j<=10;j++){ printf("第%d\n",j); } return 0; }