01-输出"hello world"
入门
1.安装 clion
2.新建工程
3.选择环境配置
代码
# include <iostream>
using namespace std;
int main()
{
cout << "hello world" << endl;
system("pause");
return 0;
}
1.安装 clion
2.新建工程
3.选择环境配置
# include <iostream>
using namespace std;
int main()
{
cout << "hello world" << endl;
system("pause");
return 0;
}