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

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

 채택된 답변

Hi,
It matches with your flowchart, Why do you thing it is not correct?

댓글 수: 4

I think the answer should be one answer only not repeatedly.
Erwin,
You're using a while loop, of course you are iterating and you will have multiple stages (you may not wanna call them answer).
Maybe what you're looking for is the final value of m and B. if so then you have to supress them from being showed in MATLAB command windows by terminating them with ;
B = 10000;
m = 0;
P = input('monthly payment?')
while B>0
B=B*(1.005);
B=B-P;
m=m+1;
end
B
m
And just view them after the while loop is finished.
Good, then would you please accept the answer.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

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

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by