我有这个简单的课程,无法弄清楚如何让双打正确显示。目前显示为"0.00"。如果没有“showpoint”和“setprecision()”,它们会显示为随机数(例如:6.95326e-310)。分钟是一个整数,价格是问题所在
output() const{
cout << "Title: " << title;
cout << fixed << showpoint << setprecision(2) <<
"\nMinutes: " << get_minutes() << "\nPrice: ";
cout << fixed << showpoint << setprecision(2) << get_price();
cout << "\n";