为了账号安全,请及时绑定邮箱和手机立即绑定

为何输入姓名后要按两下回车才有结果

#include <iostream>

#include <string>

#include <stdlib.h>

using namespace std;

int main()

{

string name;

cout<<"请输入姓名:";

getline(cin,name);

if(name.empty())

{

cout<<"输入为空"<<endl;

system("pause");

return 0;

}

if(name == "imooc")

{

cout<<"you are a administrator"<<endl;

}

cout<<"hello "+ name<<endl;

cout<<"名字首字母是:"<<name[0]<<endl;

cout<<"名字的长度是:"<<name.size()<<endl;

system("pause");

return 0;

}


正在回答

1 回答

为何结果后面“请按任意键继续”回车后又会有“press any key to continue ”?

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C++远征之封装篇(上)
  • 参与学习       103409    人
  • 解答问题       701    个

封装--面向对象的基石,本教程力求帮助小伙伴们即学即会

进入课程

为何输入姓名后要按两下回车才有结果

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信