c语言学习

25 阅读1分钟
int main() {
	// 把我爱你 输出3000次 
	int i = 0;
	while(i<3000){
		printf("%d. I miss you \n",i+1);
		i++;
	}
	
	return 0;
} 

image.png