Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
income = 0;
tax_correct = 0;
assert(isequal(taxFor(income),tax_correct))
your fucking sallary tax is:0
|
2 | Pass |
income = 100;
tax_correct = 10;
assert(isequal(taxFor(income),tax_correct))
your fucking sallary tax is:10
|
3 | Pass |
income = 1000;
tax_correct = 100;
assert(isequal(taxFor(income),tax_correct))
your fucking sallary tax is:100
|
4 | Pass |
income = 2000;
tax_correct = 200;
assert(isequal(taxFor(income),tax_correct))
your fucking sallary tax is:200
|
5 | Pass |
income = 2500;
tax_correct = 300;
assert(isequal(taxFor(income),tax_correct))
your fucking sallary tax is:300
|
6 | Pass |
income = 3000;
tax_correct = 400;
assert(isequal(taxFor(income),tax_correct))
your fucking sallary tax is:400
|
7 | Pass |
income = 5000;
tax_correct = 1000;
assert(isequal(taxFor(income),tax_correct))
your fucking sallary tax is:1000
|
8 | Pass |
filetext = fileread('taxFor.m');
assert(isempty(strfind(filetext, 'regexp')),'regexp hacks are forbidden')
|
Relative ratio of "1" in binary number
392 Solvers
384 Solvers
414 Solvers
555 Solvers
388 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!