Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
My code is producing two answers, but it is only supposed to print one.
조회 수: 1 (최근 30일)
이전 댓글 표시
my code is producing:
payment = fare(1.45,17)
pay2 =
11.2500
payment =
1.6900
The code itself is:
function payment = fare(miles,age)
pay1 =0;
pay2=0;
pay3=0;
if miles <= 1
pay1 = 200;
payment = pay1;
elseif miles <=10
pay1= 200;
pay2 = (miles-1)*0.25*100
payment = pay1+pay2;
elseif miles>10
pay1 = 200
pay2 = (10-1)*0.25*100
pay3 = (miles-10)*0.10*100
payment = pay1+pay2+pay3;
end
payment = (pay1+pay2+pay3)/100;
if age <=18 || age>=65
payment = (pay1+pay2+pay3)*0.8/100;
else
payment=(pay1+pay2+pay3)/100;
end
end
Why is this spitting out two answers when I only want it to return "payment"?
댓글 수: 2
John D'Errico
2016년 11월 27일
편집: John D'Errico
2016년 11월 27일
Please stop asking the same question multiple times.
Stephen23
2016년 11월 27일
Duplicate:
https://www.mathworks.com/matlabcentral/answers/314071-i-m-getting-two-answer-from-my-function-i-only-want-one-how-do-i-fix-this
답변 (1개)
Mischa Kim
2016년 11월 27일
DJ, the function is only returning only one variable, payment.
pay2 is only displayed because there is no semi-colon after the command
pay2 = (miles-1)*0.25*100
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!