㈠ cout<<endl;什么意思
cout<<endl;表示输出换行的意思。
endl=end of line
换句话说就是让屏幕上输出的内容换行到下一行。
使用前需要使用#include<iostream>的头文件,以及在对应的函数中写入using namespace std或者std::endl;
㈠ cout<<endl;什么意思
cout<<endl;表示输出换行的意思。
endl=end of line
换句话说就是让屏幕上输出的内容换行到下一行。
使用前需要使用#include<iostream>的头文件,以及在对应的函数中写入using namespace std或者std::endl;