我想讓用戶輸入並在屏幕上輸出它。 我想,讓用戶鍵入他們需要什麼樣類型的像O型例如,但我的輸出didnt捕獲我的Ø,只是我類型,所以是有它的方式捕獲類型內的整條線?我想用戶輸入並將其輸出到我的shell環境中
我的代碼的示例輸出。
輸入孫類型:K型
輸入行星:10
已輸入孫型:
沒有行星的:10
這只是我整個冗長代碼的一部分。
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
class LocationData
{
private:
string sunType;
int noOfEarthLikePlanets;
int noOfEarthLikeMoons;
float aveParticulateDensity;
float avePlasmaDensity;
public:
};
int main()
{
int i;
string s;
LocationData test;
cout<<"Enter Sun Type: ";
cin>>s;
test.setSunType(s);
cin.clear();
cin.ignore(10000,'\n');
cout<<"Enter planets: ";
cin>>i;
test.setNoOfEarthLikePlanets(i);
cout<<"Sun type that was entered: "<<test.getSunType();
out<<"\nNo of Planets: "<<test.getNoOfEarthLikePlanets()<<endl;
}
THX:d和想請問我需要閱讀的字符串和下一個輸入後清除我的線是一個詮釋?就像我在我的代碼 –
中的主要問題那樣,這是您通常需要注意的另一種方式。當你先讀取一個int並且隨後讀取一行時,因爲讀取一個int不會刪除以下換行符。 – john