我正在尝试为我的C ++类做一个作业而且卡住了。我已经按照这本书在互联网上搜索了答案,但我的表现不尽如人意。我需要在一个结构中有一个数组,向客户显示价格的早餐菜单。他们会选择他们想要的东西,当他们完成时,它会显示他们的账单。这是我到目前为止所做的,因为错误而不是很多。
#include "stdafx.h"
#include <iomanip>
#include <iostream>
#include <string>
using namespace std;
int main()
{
cout << fixed << setprecision(2);
const string menuList[9]
{ "Plain Egg", "Bacon and Egg", "Muffin", "Frech Toast", "Fruit Basket", "Cereal", "Coffee", "Tea" };
double prices[9]
{1.45, 2.45, 0.99, 1.99, 2.49, 0.69, 0.50, 0.75};
struct menuItemType
{
const string menuList[9];
double price;
double tax;
};
menuItemType guestList;
system("pause");
return 0;
}