java-第四章-机票价格受到淡季旺季的影响,编写的小程序
import java.util.Scanner; public class A02 { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub Scanner input = new Scanner (System.in); System.out.println("请输入月份:1~12"); int choice=input.nextInt(); System.out.println("请问您是选择头等舱还是经济舱?头等舱输入1,经济舱输入2."); int choice1=input.nextInt(); double money=0; if(choice>=4&&choice<=10){ switch (choice1) { case 1: money=5000*0.9; break; case 2: money=5000*0.8; break; default: System.out.println("输入有误!"); break; } }else{ switch (choice1) { case 1: money=5000*0.5; break; case 2: money=5000*0.4; break; default: System.out.println("输入有误!"); break; } } System.out.println("您的机票价格为:"+money); } }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。