C++ helloworld

#include <iostream> using namespace std; int main() { cout << "hello" << endl; system("pause");#暂停 return 0; } 主函数main()  一个项目只能有一主函数,只能命名为main   头文件 两行 iostream 输入输出流  输入输出 可连续输出  #include <iostre
相关文章
相关标签/搜索