假设奖金和税率如下(a代表奖金,r代表税率),用switch结构编程计算扣除奖金税后所得的奖金数?
问题描述:
假设奖金和税率如下(a代表奖金,r代表税率),用switch结构编程计算扣除奖金税后所得的奖金数?
a
答
#include <stdio.h>void main(){ int result=0; int money=0; printf("Please input the money you get: "); scanf("%d",&money); if(money<500)result=0; else if(money<1000)result=money/2...