#include<iostream>//标准输入输出流,in输入 out输出
using namespace std;//使用命名空间std打开std房间

//函数入口地址
int main()
{
	// cout标准的输出
	// <<左移运算符
	// endl  结束换行
	cout << "HelloWorld"<<endl;
	system("pause");//阻塞功能
	return EXIT_SUCCESS;//返回正常退出
}

运行结果:HelloWorld书写

 

面向对象三大特性:封装  继承  多态 

相关文章:

  • 2021-12-14
  • 2022-12-23
  • 2021-07-19
  • 2021-05-07
  • 2021-06-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-08-21
  • 2021-09-27
  • 2021-09-09
  • 2021-06-19
  • 2021-08-07
  • 2021-11-08
  • 2022-12-23
相关资源
相似解决方案