gpt4 book ai didi

java - 我必须写一个关于软件销售的源代码。我不知道我的错误是什么。

转载 作者:行者123 更新时间:2023-11-29 10:15:24 26 4
gpt4 key购买 nike

我必须编写一个程序,要求用户输入购买的包裹数量。然后程序应显示折扣金额和折扣后的购买总额。我通过程序围绕这个设计..

import java.util.Scanner;

public class softwareSales
{
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
double Package = 99, discount, priceBfDiscount, discountPrice, totalPrice;
int quantity;

System.out.println("This is a software sales program");

System.out.println("Enter number of packages");
quantity = input.nextInt();

System.out.println("Enter price of package");
Package = input.nextDouble();

System.out.println("Enter gross price");
priceBfDiscount = input.nextDouble();

priceBfDisc = Package * quantity;
discountPrice = priceBfDisc * discount;
totalPrice = priceBfDisc - discountPrice;

System.out.println("The price before discount is $" + priceBfDisc);
System.out.println("The discount price is $" + discountPrice);
System.out.println("The total price is $" + totalPrice);



if (quantity >= 10 && quantity <= 19)
{
System.out.println("The discount is .20");
}
else if (quantity >=20 && quantity <=49)
{
System.out.println("The discount is .30");
}
else if (quantity >=50 && quantity <=99)
{
System.out.println("The discount is .40");
}
else if (quantity >=100)
{
System.out.println("The discount is .50");
}







}

我不知道错误是什么。它一直说 priceBfDisc 没有符号。因此,如果有人可以帮助我找出我的错误,我将不胜感激。

最佳答案

阅读错误信息。您从未声明过 priceBfDisc;您声明了 priceBfDiscount

关于java - 我必须写一个关于软件销售的源代码。我不知道我的错误是什么。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19346855/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com