# include <stdio.h>
# include <math.h>
int main(){
int x;
int total = 0;
scanf("%d", &x);
if (x >= 30){
total = 48 * x;
}
else{
total = 50 * x;
}
printf("%d", total);
return 0;
}
1019: 公园门票
于 2024-02-04 20:18:19 首次发布
本文展示了如何使用C语言编写一个简单的程序,根据用户输入的整数x,使用if-else结构计算并输出48倍或50倍的总和。
摘要由CSDN通过智能技术生成