C++学习Day01之初识C++ Helloworld

目录

  • 一、程序
  • 二、输出
  • 三、分析与总结


一、程序

#include   //标准输入输出流   i - input  输入  o - output 输出  stream 流  相当于 stdio.h
using namespace std; //使用  标准  命名空间  


//程序入口函数
int main()
{
	// cout  标准输出流对象
	// << 左移  在C++下有了新的寓意  用于在cout后拼接输出的内容   
	// endl   --- end line  刷新缓冲区 并且换行  
	cout << "hello world"  << endl;

	system("pause");  //阻塞
	return EXIT_SUCCESS;  //返回正常退出
}


二、输出

hello world
C++学习Day01之初识C++ Helloworld_第1张图片


三、分析与总结

没什么好分析的…
基本的头文件输出流命名空间

你可能感兴趣的:(C++,c++,学习)