您好我正在创建一个电影票务操作员作为一个自我短项目,但我有点卡在如何使用户输入的结果显示在最后总结如收据上。提前谢谢。
这是我的代码:
$("body").on("click", "div.active", function() {
$(this).removeClass("active").addClass("static");
$(this).children("div").addClass("active");
});
我希望所有必需的输入显示在底部,因此在打印时,用户可以查看摘要。我还需要一条收到的消息,上面写着"谢谢你"
答案 0 :(得分:-2)
你可以整齐排列所有变量。只需编辑您的打印收据功能,如下所示:
Int printreceipt(int a) {
string title;
if (a==1) {
title = "Deadpool";
} else {
title == "Goosebumps";
}
cout << "Cashier: "; cout << name << endl << endl; //say the operator's name and add a line
cout << "Date: " << date << endl; //say the date
cout << "Movie: " << title; //say the title of the movie
cout << endl << endl; //add a line
cout << "Thank you for choosing this cinema! Enjoy!"; //Thank you message :D
}
为您提供与以下类似的结果:
Cashier: Guy
Date: May 5, 2017
Movie: Deadpool
Thank you for choosing this cinema! Enjoy!