首页 > 代码库 > 第一章C语言简介及输出函数 上机1

第一章C语言简介及输出函数 上机1

/* Note:Your choice is C IDE */
#include "stdio.h"
void main()
{
printf("南方学院,你好!\n");
printf("我来啦!");
printf("我会好好学习的。");

}

第一章C语言简介及输出函数 上机1