필터 지우기
필터 지우기

How to solve my code for the question given below, i have tried my level best with my code

조회 수: 1 (최근 30일)
Write a function called fare that computes the bus fare one must pay in a given city based on the distance travelled. Here is how the fare is calculated: the first mile is $2. Each additional mile up to a total trip distance of 10 miles is 25 cents. Each additional mile over 10 miles is 10 cents. Miles are rounded to the nearest integer other than the first mile which must be paid in full once a journey begins. Children 18 or younger and seniors 60 or older get a 20% discount. The inputs to the function are the distance of the journey and the age of the passenger in this order. Return the fare in dollars, e.g., 2.75 would be the result returned for a 4-mile trip with no discount.
function amount = fare(distance,age)
amount=0;
if distance==0
amount=0;
else
amount=2;
end
if fix(distance) <=10
amount=amount+(0.25*(fix(distance)-1));
end
if fix(distance) > 10
amount=amount+(0.10*(fix(distance)-10));
end
if age <=18 && age >= 60
discount=0.20*amount;
amount=amount-discount;
end
  댓글 수: 2
Vijayramanathan B.tech-EIE-118006077
No walter! I got my output with this code I developed and it matches all of my test cases!
function amount = fare(distance,age)
amount=0;
if distance>0
amount=2;
else
amount=0;
end
if round(distance) <=10 && distance>1
amount=amount+(0.25*(round(distance)-1));
end
if round(distance) > 10
amount=2.25+amount+(0.10*(round(distance)-10));
end
if age <=18 || age >= 60
discount=0.20*amount;
amount=amount-discount;
end

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

채택된 답변

Walter Roberson
Walter Roberson 2018년 2월 10일
Your line
if age <=18 && age >= 60
can only be true if age is simultaneously no more than 18 and is also at least 60.
I have seen philosophical arguments that "infinity" is simultaneously positive and negative, so there could maybe be some claim that someone who has reached the age of "infinity" is both less than 18 and more than 60, but other than that I am not aware of any way your test could be satisfied.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by