/#include<stdio.h> int main() { int a = 0; while (a < 3000) { printf("写代码:%d\n", a); a++; } if (a == 3000) { printf("好工作"); } return 0; }