当前位置:   article > 正文

CSDN 创作提现规则解读-简明版_csdn云账户提现

csdn云账户提现

最近关注了一下CSDN提现规则,昨天看的时候感觉官网写的文章晦涩难懂,看了一下CSDN某一篇参考的文章,依然没有看懂。今天早上看一些官方的参考文章终于看懂了。知道一下小问题也就可以了。


提现注意事项
1、必须进行实名认证才可以进行提现;
2、账号收益满足100元以上才可提现;
3、订单支付后半个月内,正常使用未发生退款才可将此订单的收益计入收益中心,从而申请提现;
4、注意当提现申请在审核中时,用户无法再次提交新的提现申请;
5、账户每天只能提现一次;
6、当月100元<=当月累计提现金额<=800元,无需扣税;当月累计提现金额>800元,按照国家法定税收扣除相应的个税;

上面的话再简答明了。

下面来看看CSDN博客如何进行扣税的。

 

平台将按照国家相关规定,对收益进行代扣代缴个人所得税,具体结算金额请以实际到账的金额为准,提现800以下(包含800)不征税,800以上按照下方的个税计算公式进行征税:

在这里插入图片描述
图一:应税所得额计算公式


1.按照提现金额计算应纳税额所得额(见上图)
2.按照计算后的应纳税所得额判断以下区间计算个税(见下图)
 

在这里插入图片描述
图二:应扣税计算公式

昨天我看的时候现在想想是没有理解应税所得额和应扣税这两个概念。

应纳所得额:指按照税法规定确定纳税人在一定期间所获得的所有应税收入减除在该纳税期间依法允许减除的各种支出后的余额,是计算企业所得税税额的计税依据。《企业所得税法》规定的应纳税所得额是指企业每一纳税年度的收入总额,减除不征税收入免税收入、各项扣除及允许弥补的以前年度亏损后的余额。企业应纳税所得额的计算,以权责发生制为原则,属于当期的收入和费用,不论款项是否收付,均作为当期的收入和费用;不属于当期的收入和费用,即使款项已经在当期收付,均不作为当期的收入和费用。

应纳税所得额=收入总额-不征税收入-免税收入-各项扣除-以前年度亏损

通俗来讲应税所得额就是就是在你的提现金额之中,有那部分是需要交税的。比如你的

  • 提现金额<=800元的时候,这些金额不需要交税;
  • 800元 <= 提现金额 <= 4000元的时候,(提现金额 - 800元)这一部分则需要你去交税,例如提现金额3000元,则3000 - 800 = 2200 元这一部分需要你交税;
  • 提现金额 > 4000元的时候,(提现金额)* (1 - 20%)= 提现金额 * 0.8 这部分都需要你交税,例如提现金额5000元,则5000 * 0.8 = 4000元这一部分都需要你交税。

应扣税:提现的过程之中应该扣除你的金额,是根据应纳所得额这一个计算出来的,在判断的过程之中也只会根据应纳所得额,如图二。

现在我将提现的过程之中CSDN平台究竟要扣除你多少税,用程序框图表示出来,如下:

建议双击查看原图

 

  1. #include <iostream>
  2. using namespace std;
  3. class CSDNcalculator
  4. {
  5. public:
  6. void setMoney(double money);
  7. void showCllc();
  8. double getCllcMoney();
  9. void run();
  10. private:
  11. double money;
  12. };
  13. void CSDNcalculator::setMoney(double m)
  14. {
  15. if(m>=0)
  16. {
  17. this->money = m;
  18. }
  19. else
  20. {
  21. this->money = - m;
  22. }
  23. }
  24. double CSDNcalculator::getCllcMoney()
  25. {
  26. double t = 0;
  27. if(this->money<800)
  28. {
  29. /*
  30. if(this->money<100)
  31. {
  32. cout<<"提现失败,金额没有超过100元"<<endl;
  33. }
  34. else
  35. {
  36. cout<<"提现金额没有超过800元不扣税"<<endl;
  37. }*/
  38. return 0;
  39. }
  40. else if(this->money <=4000)
  41. {
  42. t = this->money - 800;
  43. }
  44. else
  45. {
  46. t = this -> money*0.8;
  47. }
  48. if(t <= 20000)
  49. {
  50. return (t * 0.2);
  51. }
  52. else if(t <= 50000)
  53. {
  54. return (t * 0.3 -2000);
  55. }
  56. else
  57. {
  58. return (t * 0.4 -7000);
  59. }
  60. }
  61. void CSDNcalculator::showCllc()
  62. {
  63. cout<<endl<<"--------------------------"<<endl;
  64. cout<<"提现金额:"<<this->money<<endl;
  65. cout<<"交税费用:"<<this->getCllcMoney()<<endl;
  66. cout<<"实际到账:"<<this->money - this->getCllcMoney()<<endl;
  67. cout<<"--------------------------"<<endl;
  68. }
  69. void CSDNcalculator::run()
  70. {
  71. double m=0;
  72. cout<<"欢迎使用CSDN提现计算器,输入-1可以结束程序"<<endl;
  73. while(true)
  74. {
  75. cout<<"请输入你将要提现的额度"<<endl;
  76. cin>>m;
  77. if(m == -1)
  78. {
  79. cout<<"感谢使用!"<<endl;
  80. return;
  81. }
  82. this->setMoney(m);
  83. this->showCllc();
  84. }
  85. }
  86. int main()
  87. {
  88. CSDNcalculator c;
  89. c.run();
  90. return 0;
  91. }

纯英文版:

  1. #include <iostream>
  2. using namespace std;
  3. class CSDNcalculator
  4. {
  5. public:
  6. void setMoney(double money);
  7. void showCllc();
  8. double getCllcMoney();
  9. void run();
  10. private:
  11. double money;
  12. };
  13. void CSDNcalculator::setMoney(double m)
  14. {
  15. if(m>=0)
  16. {
  17. this->money = m;
  18. }
  19. else
  20. {
  21. this->money = - m;
  22. }
  23. }
  24. double CSDNcalculator::getCllcMoney()
  25. {
  26. double t = 0;
  27. if(this->money<800)
  28. {
  29. return 0;
  30. }
  31. else if(this->money <=4000)
  32. {
  33. t = this->money - 800;
  34. }
  35. else
  36. {
  37. t = this -> money*0.8;
  38. }
  39. if(t <= 20000)
  40. {
  41. return (t * 0.2);
  42. }
  43. else if(t <= 50000)
  44. {
  45. return (t * 0.3 -2000);
  46. }
  47. else
  48. {
  49. return (t * 0.4 -7000);
  50. }
  51. }
  52. void CSDNcalculator::showCllc()
  53. {
  54. cout<<endl<<"--------------------------"<<endl;
  55. cout<<"Withdrawal amount:"<<this->money<<endl;
  56. cout<<"Tax payment fee:"<<this->getCllcMoney()<<endl;
  57. cout<<"Actual arrival:";
  58. double arrmoney=this->money - this->getCllcMoney();
  59. if(arrmoney<100)
  60. {
  61. arrmoney = 0;
  62. }
  63. cout<<arrmoney<<endl;
  64. cout<<"--------------------------"<<endl;
  65. }
  66. void CSDNcalculator::run()
  67. {
  68. double m=0;
  69. cout<<"Welcome to CSDN withdrawal calculator, enter - 1 to end the program."<<endl;
  70. while(true)
  71. {
  72. cout<<"Please input the amount you will withdraw."<<endl;
  73. cin>>m;
  74. if(m == -1)
  75. {
  76. cout<<"Thank you for using!"<<endl;
  77. return;
  78. }
  79. this->setMoney(m);
  80. this->showCllc();
  81. }
  82. }
  83. int main()
  84. {
  85. CSDNcalculator c;
  86. c.run();
  87. return 0;
  88. }

参考文献:

CSDN提现规则说明(更新:支持实时提现)

CSDN 创作提现规则解读,不懂的朋友请来这里

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/383513
推荐阅读
相关标签
  

闽ICP备14008679号