学习C语言第二天(基础知识)

学习C语言第二天(基础知识)


#define _CRT_SECURE_NO_WARNINGS


#include <stdio.h>

int main(){

int line = 0;

printf("欢迎学习C语言\n");

while (line < 20000){

printf("写一行代码%d\n", line);

line++;

}

if (line>= 20000){

printf("给一份年薪10w+的offer\n");

}

return 0;

}


猜你喜欢

转载自blog.51cto.com/15111471/2636186