程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 分支-10. 計算個人所得稅

分支-10. 計算個人所得稅

編輯:關於C語言

 1 /*
 2  * Main.c
 3  * B10-分支-10. 計算個人所得稅(10)
 4  *  Created on: 2014年5月29日
 5  *      Author: Boomkeeper
 6  *
 7  *    測試通過
 8  */
 9 
10 
11 #include <stdio.h>
12 #include <stdlib.h>
13 
14 int main()
15 {
16     float salary=0;
17     float *ps=&salary;
18 
19     scanf("%f",ps);
20 
21     if(*ps<0)
22         exit(0);
23 
24     if(*ps<=1600 && *ps>=0)
25         printf("0.00\n");
26 
27     if(*ps<=2500 && *ps>1600)
28         printf("%.2f\n",0.05*(*ps-1600));
29 
30     if(*ps<=3500 && *ps>2500)
31         printf("%.2f\n",0.1*(*ps-1600));
32 
33     if(*ps<=4500 && *ps>3500)
34         printf("%.2f\n",0.15*(*ps-1600));
35 
36     if(*ps>4500)
37         printf("%.2f\n",0.2*(*ps-1600));
38 
39     return 0;
40 }

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved