打折程序怎么写出来

时间:2025-01-27 18:41:21 单机游戏

打折程序可以用多种编程语言实现,下面我将分别用Python和Java给出两个示例代码。

Python示例

```python

def calculate_discounted_price(original_price, discount_type, discount_value):

if discount_type == '满减':

if original_price >= discount_value:

return original_price - discount_value

else:

return original_price

elif discount_type == '折扣':

return original_price * (1 - discount_value)

elif discount_type == '买一送一':

return original_price

else:

return original_price

def main():

original_price = float(input('请输入原价:'))

discount_type = input('请输入折扣类型(满减、折扣、买一送一):')

discount_value = float(input('请输入折扣值:'))

discounted_price = calculate_discounted_price(original_price, discount_type, discount_value)

print(f'折扣后的价格是: {discounted_price:.2f}')

if __name__ == '__main__':

main()

```

Java示例

```java

import java.util.Scanner;

public class DiscountCalculator {

public static void main(String[] args) {

Scanner scanner = new Scanner(System.in);

System.out.print("请输入原价: ");

double originalPrice = scanner.nextDouble();

System.out.print("请输入折扣类型(1-9): ");

int discountType = scanner.nextInt();

System.out.print("请输入折扣值(1-9): ");

int discountValue = scanner.nextInt();

double discountedPrice = calculateDiscountedPrice(originalPrice, discountType, discountValue);

System.out.printf("折扣后的价格是: %.2f%n", discountedPrice);

}

public static double calculateDiscountedPrice(double originalPrice, int discountType, int discountValue) {

double discountedPrice = originalPrice;

switch (discountType) {

case 1:

discountedPrice *= 0.5; // 50% off

break;

case 2:

discountedPrice *= 0.8; // 20% off

break;

case 3:

discountedPrice *= 0.6; // 40% off

break;

default:

break;

}

return discountedPrice;

}

}

```

解释

Python示例

定义了一个函数 `calculate_discounted_price`,根据输入的原价、折扣类型和折扣值计算折扣后的价格。

`main` 函数负责获取用户输入并调用 `calculate_discounted_price` 函数,最后输出折扣后的价格。

Java示例

定义了一个 `DiscountCalculator` 类,其中包含 `main` 方法和 `calculateDiscountedPrice` 方法。

`main` 方法获取用户输入的原价、折扣类型和折扣值,并调用 `calculateDiscountedPrice` 方法计算折扣后的价格,最后输出结果。

`calculateDiscountedPrice` 方法根据折扣类型计算折扣后的价格。

这两个示例分别展示了如何在Python和Java中实现打折程序。你可以根据自己的需求选择合适的编程语言和实现方式。