1.2 第一个C++程序
1.1.3 编写代码
#include <iostream>
using namespace std;
int main()
{
cout << "hello world" << endl;
system("pause");
return 0;
}1.1.4 运行程序
最后更新于
#include <iostream>
using namespace std;
int main()
{
cout << "hello world" << endl;
system("pause");
return 0;
}最后更新于