#include <iostream>
using namespace std;
int main()
{
cout << "白日依山尽,黄河入海流。" << endl;
return 0;
}
输出整首
#include <iostream>
using namespace std;
int main()
{
cout << "白日依山尽,黄河入海流," << endl;
cout << "欲穷千里目,更上一层楼。" << endl;
return 0;
}
include 包含,包括
iostream 输入输出流
using 使用
namespace 命名空间
std 标准的缩写standard
cout c和out,输出流
endl end和line的缩写,换行,并清空缓冲区