cout << "How many questions are there going to be on this exam?" << endl;
cout << ">>";
getline(cin, totalquestions);
這段代碼來自於我創建的類中的一個函數,我需要totalquestions
爲int,以便它可以通過for循環運行,並始終詢問總數我問過的問題數量。嘗試在getline中使用int
question q;
for(int i = 0; i < totalquestions; i++)
{
q.inputdata();
questions.push_back(q);
}
這段代碼在哪裏發揮作用?有沒有人有任何想法使這項工作?
請註明您的想法是* not * working。 – ulidtko 2011-04-30 20:06:48
@ulidtko,實際上,對於這個問題,很容易看到什麼是不工作... – riwalk 2011-04-30 20:08:34