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!