C's HelloWorld

107 阅读1分钟
#include <stdio.h>//头文件
int main()//主函数
{
    printf("Hello World!\n");//输出
    return 0;//返回值
}

\