对 Java 来说很新,所以试图理解它可能很困难。
无论如何,问题是,作为任务的一部分,我必须编写一个剧院门票控制台应用程序。我几乎完成了我只是想添加最后一部分
作为任务的一部分,我们必须询问用户是否希望张贴门票,如果是,则会产生费用,该费用将应用于总费用。目前我不确定如何做到这一点。目前,我正在使用 If 和 else 语句和.. 那么你会在下面看到。
System.out.println ("Do you require the tickets to be posted?\n(£2.34 for post and packing for the entire order)\n(please enter 'Yes' on the next line if you require postage)");
String postinp = scanner.next();
if ("Yes".equals(postinp)){
System.out.println("Postage will be added to your cost" );
}
else
System.out.println("Postage will not be added to your cost");
好吧,我正在尝试编码,如果用户输入“是”,那么它会将邮资费用添加到总数中,但是在这部分代码中,我不确定如何执行此操作。
任何帮助,将不胜感激。谢谢!