程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c++-結構成員含string類型數組,成員的輸入問題

c++-結構成員含string類型數組,成員的輸入問題

編輯:編程綜合問答
結構成員含string類型數組,成員的輸入問題

要求輸入的name可含空格,不知道錯哪了,新手求好心人解答,萬分感謝!

#include
#include
using namespace std;
struct donation{
string name;
double number;
};
int main()
{
cout<<"Input the number of donater: ";
int d_number;
cin>>d_number;
donation * p = new donation[d_number];

for(int i = 0; i < d_number; i++)
{
    cout<<"Input the name of the donater.";
    getline(cin,p[i].name);
    cout<<"Input the number.";
    cin>>p[i].number;
}

for(int i = 0; i < d_number; i++)
    cout<<p[i].name<<"   "<<p[i].number<<endl;
return 0;

}

最佳回答:


前一次輸入的換行符沒有清掉,導致getline函數讀到換行符之後就返回!可以在調用getline函數之前,調用cin.get()把換行符清掉,當然也可以用其他的方法!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved