Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
Tax_smart_contract
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Robert
Tax_smart_contract
Commits
342178e4
Commit
342178e4
authored
Jan 15, 2019
by
Robert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update tax.sol
parent
85834170
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
tax.sol
contracts/tax.sol
+2
-2
No files found.
contracts/tax.sol
View file @
342178e4
pragma solidity ^0.4.7;
contract tax {
contract tax {
//旧规个税计算
function output_before(uint money) public returns (uint) {
uint money_before;
uint res1;
...
...
@@ -23,7 +23,7 @@ contract tax {
}
return res1;
}
function output_after(uint money) public returns (uint) {
function output_after(uint money) public returns (uint) {
//新规个税计算
uint money_after;
uint res2;
money_after=money-5000;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment