#includeiostreamint main using namespace std; cout Come up and C++ me some time; cout endl; cout You wont regret it! endl; return 0;解释每行程序用中文回答
#include
int main():主函数的定义,程序从这里开始执行
using namespace std;:使用std命名空间,std命名空间中包含了标准库函数和对象的定义
cout <<"Come up and C++ me some time";:使用cout对象输出字符串"Come up and C++ me some time"
cout << endl;:使用cout对象输出换行
cout <<"You won't regret it!" <<endl;:使用cout对象输出字符串"You won't regret it!"并在末尾加上换行
return 0;:返回0,表示程序正常结束
原文地址: https://www.cveoy.top/t/topic/ie1J 著作权归作者所有。请勿转载和采集!