4
stringstream ทำอะไรได้บ้าง?
ฉันพยายามเรียนรู้ C ++ ตั้งแต่เมื่อวานและกำลังใช้เอกสารนี้: http://www.cplusplus.com/files/tutorial.pdf (หน้า 32) ฉันพบรหัสในเอกสารและฉันเรียกใช้ ฉันลองป้อน Rs 5.5 สำหรับราคาและจำนวนเต็มสำหรับปริมาณและผลลัพธ์เป็น 0 ฉันลองป้อน 5.5 และ 6 และเอาต์พุตถูกต้อง // stringstreams #include <iostream> #include <string> #include <sstream> using namespace std; int main () { string mystr; float price = 0; int quantity = 0; cout << "Enter price: "; getline (cin,mystr); …