Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
income = 0;
tax_correct = 0;
assert(isequal(taxFor(income),tax_correct))
Your sallary tax is:0
|
2 | Pass |
income = 100;
tax_correct = 10;
assert(isequal(taxFor(income),tax_correct))
Your sallary tax is:10
|
3 | Pass |
income = 1000;
tax_correct = 100;
assert(isequal(taxFor(income),tax_correct))
Your sallary tax is:100
|
4 | Pass |
income = 2000;
tax_correct = 200;
assert(isequal(taxFor(income),tax_correct))
Your sallary tax is:200
|
5 | Pass |
income = 2500;
tax_correct = 300;
assert(isequal(taxFor(income),tax_correct))
Your sallary tax is:300
|
6 | Pass |
income = 3000;
tax_correct = 400;
assert(isequal(taxFor(income),tax_correct))
Your sallary tax is:400
|
7 | Pass |
income = 5000;
tax_correct = 1000;
assert(isequal(taxFor(income),tax_correct))
Your sallary tax is:1000
|
8 | Pass |
filetext = fileread('taxFor.m');
assert(isempty(strfind(filetext, 'regexp')),'regexp hacks are forbidden')
|
3375 Solvers
1263 Solvers
Magic is simple (for beginners)
2749 Solvers
Determine the number of odd integers in a vector
435 Solvers
380 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!