01 hello world

bear12 / 2024-06-03 / 原文

#include <iostream> /*引入一个输入输出的库*/
using namespace std; //使用这个库中间的一个命名空间叫std的、以及里面的一些函数

int main()
{
cout << "123"; //cout就是std命名空间中的一个函数
return 0;
}