I think my answer is not correct for this question, anyone can help me to check it? Thanks
2 ビュー (過去 30 日間)
古いコメントを表示
Erwin Koman
2015 年 6 月 27 日
コメント済み: Salaheddin Hosseinzadeh
2015 年 6 月 27 日
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
0 件のコメント
採用された回答
Salaheddin Hosseinzadeh
2015 年 6 月 27 日
Hi,
It matches with your flowchart, Why do you thing it is not correct?
4 件のコメント
その他の回答 (1 件)
Walter Roberson
2015 年 6 月 27 日
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
参考
カテゴリ
Help Center および 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!