5.15

Posted dmx-03

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5.15相关的知识,希望对你有一定的参考价值。

     编写一个计算个人所得税的程序,要求输入收入金额后,能够输出应缴的个人所得税个人所得税征收办法如下:起征点为3500元。

不超过1500元的部分,征收3%;超过1500~4500元的部分,征收10%;超过4500~9000元的部分,征收20%;超过9000~35000元的部分,征收25%;超过35000~55000元的部分,征收30%;超过55000~80000元的部分,征收35%;

问题分析:

由问题分析中讲解的C语言中结构体的相关知识可知,这里可以使用结构体数组存放不同的税率范围。接着使用for 循环遍历每一个征税范围,将个人收入中超出起征点的金额在每个征税范围内应缴纳的税款累加起来,就得到最后应缴纳的个人所得税。

代码示例

#include<bits/stdc++.h>
using namespace std;

#define TAXBASE 3500; 
typedef struct 
    long start;
    long end;
    double taxrate;
TAXTABLE;

TAXTABLE TaxTable[] = 0, 1500, 0.03, 1500, 4500, 0.10, 4500, 9000, 0.20, 9000, 35000, 0.25, 35000, 55000, 0.30, 55000, 80000, 0.35, 80000, 10000000000, 0.45;

double CaculateTax(long profit)
    int i;
    double tax = 0.0;
    profit -= TAXBASE;
    for(i = 0; i < sizeof(TaxTable) / sizeof(TAXTABLE); i ++)
        if(profit > TaxTable[i].start)    
            if(profit > TaxTable[i].end)
                tax += (TaxTable[i].end - TaxTable[i].start) * TaxTable[i].taxrate;
             
            else
                tax += (profit - TaxTable[i].start) * TaxTable[i].taxrate;
            
            profit -= TaxTable[i].end;
            
            printf("征收范围:%6ld~%6ld 该范围内缴纳金额:%6.2f 超出该范围的金额: %6ld \\n", TaxTable[i].start, TaxTable[i].end, tax,(profit) > 0 ? profit : 0);
        
     
    return tax;

int main()
    long profit;
    double tax;
    printf("请输入个人收入金额: ");
    scanf("%ld", &profit);
    tax = CaculateTax(profit);
    printf("你的个人所得税为:%12.2f\\n", tax);
     

Android Support Annotations :安卓注解快速上手

 我们都知道,安卓资源文件都是int类型的ID来保存其引用,通过注解类型,可以让我们在写代码的时候,及时发现参数类型的错误,避免潜在的BUG,如下:

我们通过@LayoutRes指定了参数必须要是R.layout.xxx格式的数据,传数字IDE就会提示我们错误

技术分享

 

通过gradle,把注解类型引入到项目中 

compile ‘com.android.support:support-annotations:23.1.1‘

 

安卓原生给我们提供了一系列注解类,支持我们的开发

注解类所在包位置:安卓SDK路径extrasandroidm2repositorycomandroidsupportsupport-annotations

 

我们随便找个23.1.1文件夹,找到里面的support-annotations-23.1.1-sources.jar,通过JD-GUI查看

通过里面Res结尾的类,我们就可以限定安卓不同类型的资源ID了

技术分享

里面其他类我们也可以看看,比如NonNull、Nullable、限定范围FloatRange的也很有意思,如下:

技术分享

 

以上是关于5.15的主要内容,如果未能解决你的问题,请参考以下文章

5.15

5.15上午

5.15下午

5.15下午

5.15上午

5.15下午