当前位置: 代码迷 >> 综合 >> Day01-hellowld
  详细解决方案

Day01-hellowld

热度:47   发布时间:2023-12-06 16:37:29.0

C语言
#include<stdio.h>
int main()
{
printf(“HelloWorld!\n”);
return 0;
}
//stdio->”standard input & output"(标准输入输出)
C++
#include
using namespace std;
int main()
{
cout<<“HelloWorld!”<<endl;
return 0;
}
//iostream(输入输出流)->in(输入) out(输出) stream(流)
//using namespace std->使用命名空间std