7-80 打折

/*

7-80 打折 (5 分)
去商场淘打折商品时,计算打折以后的价钱是件颇费脑子的事情。例如原价 ¥988,标明打 7 折,则折扣价应该是 ¥988 x 70% = ¥691.60。本题就请你写个程序替客户计算折扣价。

输入格式:
输入在一行中给出商品的原价(不超过1万元的正整数)和折扣(为[1, 9]区间内的整数),其间以空格分隔。

输出格式:
在一行中输出商品的折扣价,保留小数点后 2 位。
*/

#include<stdio.h>

int main(void)
{
	int n,m;
	scanf("%d %d",&n,&m);
	
	double sum = n*m*0.1;
	printf("%.2f",sum);
	
	return 0;
}
1. 以下是第一个问题的代码: ``` #include <stdio.h> int main() { int num1, num2; printf("请输入两个整数:\n"); scanf("%d %d", &num1, &num2); if (num2 == 0) { printf("非法输入,除数不能为0!\n"); } else if (num1 % num2 == 0) { printf("%d 能被 %d 整除!\n", num1, num2); } else { printf("%d 不能被 %d 整除!\n", num1, num2); } return 0; } ``` 2. 以下是第二个问题的代码: ``` #include <stdio.h> int main() { int a, b, c, max; printf("请输入三个整数:\n"); scanf("%d %d %d", &a, &b, &c); max = a; if (b > max) { max = b; } if (c > max) { max = c; } printf("最大的数是:%d\n", max); return 0; } ``` 3. 以下是第三个问题的代码: ``` #include <stdio.h> int main() { int score; printf("请输入成绩:\n"); scanf("%d", &score); if (score >= 90) { printf("成绩等级为:A\n"); } else if (score >= 80) { printf("成绩等级为:B\n"); } else if (score >= 70) { printf("成绩等级为:C\n"); } else if (score >= 60) { printf("成绩等级为:D\n"); } else { printf("成绩等级为:E\n"); } return 0; } ``` 4. 以下是第四个问题的表格: | 消费金额(P) | 折扣(d) | | ------------ | --------- | | P < 100 | 无折扣 | | 100 ≤ P < 200 | 9 折 | | 200 ≤ P < 300 | 8 折 | | 300 ≤ P < 500 | 7 折 | | P ≥ 500 | 6 折 | 以下是第四个问题的代码: ``` #include <stdio.h> int main() { float p, d; printf("请输入消费金额:\n"); scanf("%f", &p); if (p < 100) { d = 1; } else if (p < 200) { d = 0.9; } else if (p < 300) { d = 0.8; } else if (p < 500) { d = 0.7; } else { d = 0.6; } printf("折扣为:%g\n", d); return 0; } ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

向上Claire

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值