其他分享
首页 > 其他分享> > 01-HelloWorld-20220614

01-HelloWorld-20220614

作者:互联网

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