如何显示语句的循环字符?

时间:2018-09-21 15:55:40

标签: c++ loops character dev-c++

如何显示语句的循环字符? 用户输入名称,然后计算机将其循环,然后由前哨停止。 该语句显示用户输入的所有名称。

示例: 名称: 加比 杰西 阿里西亚 贾斯汀

1 个答案:

答案 0 :(得分:0)

以下是一些起始代码:

#include <iostream>
#include <string>
#include <vector>  

int main()
{
  std::vector<std::string> database;
  std::string name;
  while (std::cin >> name)
  {
    database.push_back(name);
  }
  return 0;
}

在读取名称后,OP需要添加代码。

注意:我没有添加代码,因为我对OP的要求不清楚。