购买地铁车票的规定:乘1-4站,3元/位;乘5-9站,4元/位;乘9站以上,5元/位。 用c语音编写程序实现此功能:输入人数、站数,输出应付款。
时间: 2024-03-26 22:33:32 浏览: 186
地铁售票程序 c++
5星 · 资源好评率100%
购买地铁车票的规定如下:
- 乘坐1-4站,每位乘客需要支付3元。
- 乘坐5-9站,每位乘客需要支付4元。
- 乘坐9站以上,每位乘客需要支付5元。
以下是用C语言编写程序实现此功能的示例代码:
```c
#include <stdio.h>
int main() {
int numPassengers, numStations;
int totalPrice;
printf("请输入人数:");
scanf("%d", &numPassengers);
printf("请输入站数:");
scanf("%d", &numStations);
if (numStations >= 1 && numStations <= 4) {
totalPrice = numPassengers * 3;
} else if (numStations >= 5 && numStations <= 9) {
totalPrice = numPassengers * 4;
} else if (numStations >= 9) {
totalPrice = numPassengers * 5;
} else {
printf("输入的站数不合法!\n");
return 0;
}
printf("应付款:%d元\n", totalPrice);
return 0;
}
```
阅读全文