C语言 | for循环 | 笔记

31 阅读1分钟
#include <stdio.h>
int main (){
	int j;
	for(j=1;j<=10;j++){
		printf("第%d\n",j);
	}
	
	return 0;
} 

image.png