一个在线图书销售商以以下价格出售四种图书类型。
书籍类型1:£ 15.98
书籍类型2:£ 12.50
书籍类型3:£ 11.98
书籍类型4:£ 17.49
编写一个程序,输入如下。
图书类型
书籍数量
您的程序应该使用switch语句,计算并显示所选图书类型的总价。
所以我对java还很陌生,只是在学习。我已经学会了如何用java编写switch case。但我还是不太明白。任何提示或想法都将不胜感激。
到目前为止我得到的是!我不确定我所做的是问题在问我什么。
import java.util.*;
public class onlineBookstore {
public static void main (String [] Args)
{
Scanner x= new Scanner(System.in);
int a,b,price;
String book;
System.out.println("Enter the Book type");
book = x.next();
System.out.println("Enter the Number of books");
book = x.next();
switch(book) {
case "book1" :
System.out.println("£ 15.98");
break;
case "book2" :
System.out.println("£ 12.50");
break;
case "book3":
System.out.println("£ 11.98 ");
break;
case "book4":
System.out.println("£ 17.49");
break;
default :
System.out.println("INVALID");
}
System.out.println("This is the end of the program");
}
}
2条答案
按热度按时间vojdkbi01#
非常感谢你,维比。我真是个笨蛋。这是我最后得到的密码。而且它工作得完美无瑕。
m4pnthwp2#
根据你的问题,这可能对你有帮助
}
如果您需要从程序中获得更多功能,可以对此进行进一步的更改