1,c++的7行代码框架
2,cout <<""<< endl; //打印
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World" << endl;
cout << "Hello C++" << endl;
system("pause");
return 0;
}
标签:std,01,cout,int,20220614,HelloWorld,main
来源: https://www.cnblogs.com/faithfeng/p/16377473.html