折扣源程序可以根据不同的编程语言和需求来编写。以下是几种常见编程语言的折扣计算程序示例:
C语言示例
```c
include
int main() {
int original_price, discount;
double discounted_price;
printf("请输入商品的原价(不超过1万元的正整数): ");
scanf("%d", &original_price);
printf("请输入折扣(为[1, 9]区间内的整数): ");
scanf("%d", &discount);
if (discount < 1 || discount > 9) {
printf("折扣输入错误,请输入1到9之间的整数。\n");
return 1;
}
discounted_price = original_price * (1 - discount / 10.0);
printf("折扣后的价格为: %.2f\n", discounted_price);
return 0;
}
```
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 / 100)
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()
```
PHP示例
```php
<?php
$productName = "手机";
$originalPrice = 1000;
$discountRate = 0.8;
$discountedPrice = $originalPrice * $discountRate;
echo "商品名称: " . $productName . "\n";
echo "原始价格: " . $originalPrice . "\n";
echo "折扣率: " . $discountRate . "\n";
echo "折扣后价格: " . $discountedPrice . "\n";
?>
```
Java示例
```java
import java.util.Scanner;
public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int originalPrice = sc.nextInt();
int discount = sc.nextInt();
double discountedPrice = originalPrice * (1 - discount / 10.0);
System.out.printf("%.2f", discountedPrice);
}
}
```
这些示例程序分别使用C、Python、PHP和Java编写,可以根据具体需求选择合适的编程语言来实现折扣计算功能。每个示例程序都包含了输入原价和折扣,并输出折扣后的价格,保留两位小数。