ここでC++に少し新しい。以下のようなことは可能でしょうか?
int temp;
while(cin >> temp != -9999){//Do something with temp}
その正確なコードを機能させることはできませんが、そのようなことが可能になるはずだと感じています.
編集 次のことも試しました:
while(cin.getline(temp) != -9999){//Do something with temp}
まだ何もありません。getline()
文字列でのみ機能しますか?