gpt4 book ai didi

c++ - 尝试在 getline 中使用 int

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:57:39 26 4
gpt4 key购买 nike

cout << "How many questions are there going to be on this exam?" << endl;
cout << ">>";
getline(cin, totalquestions);

这一小段代码来 self 创建的类中的一个函数,我需要 totalquestions 是一个 int 以便它可以运行一个 for 循环并不断询问总数我问过的问题。

question q;
for(int i = 0; i < totalquestions; i++)
{
q.inputdata();
questions.push_back(q);
}

这段代码在哪里发挥作用?有没有人有任何想法使这项工作?

最佳答案

使用

cin >> totalquestions;

也检查错误

if (!(cin >> totalquestions))
{
// handle error
}

关于c++ - 尝试在 getline 中使用 int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5844309/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com