I think my answer is not correct for this question, anyone can help me to check it? Thanks

4 views (last 30 days)
Attached file is the question. Here is my code
B = 10000;
m = 0;
P = input('monthly payment?')
while B>0
B=B*(1.005);
B=B-P
m=m+1
end

Accepted Answer

Salaheddin Hosseinzadeh
Salaheddin Hosseinzadeh on 27 Jun 2015
Hi,
It matches with your flowchart, Why do you thing it is not correct?
  4 Comments

Sign in to comment.

More Answers (1)

Walter Roberson
Walter Roberson on 27 Jun 2015
B = 10000;
m = 0;
P = input('monthly payment?')
while B>0
B=B*(1.005);
B=B-P; %changed
m=m+1; %changed
end
disp(m); %changed

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!