ヘッダーファイルを使おうとしていますsstream.h
以下は私のコードセグメントです
#include <iostream>
#include <string>
#include <sstream>
int main ()
{
string mystr;
float price=0;
int quantity=0;
cout << "Enter price: ";
getline (cin,mystr);
stringstream(mystr) >> price;
cout << "Enter quantity: ";
getline (cin,mystr);
stringstream(mystr) >> quantity;
cout << "Total price: " << price*quantity << endl;
return 0;
}
しかし、私は次のエラーが発生しています
unable to open include file sstream.h
誰かが私が間違っていることの手がかりを持っていますか?