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.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
my code is
function [fare] = fare(a,d)
if d<=1
fare = 2;
elseif d<=10
fare = 2+0.25*(d-1);
else
fare = 2+0.10*(d-1);
return
end
if a<=18||a>=60
fare = 0.80*fare;
end
1 commentaire
John D'Errico
le 14 Mar 2018
Modifié(e) : John D'Errico
le 14 Mar 2018
Then what is your question? Is there a reason why you posted this?
Naming a function by the same name as the return variables would seem a bit dangerous. But surely there is some good reason why you are asking a question.
Réponses (1)
RAMAKANT SHAKYA
le 8 Fév 2019
function Kcost= fare(d, A)
d=round(d); %rounding the distance to nearest positive integer
if d <=1
Kcost=2; %for first kilometer
elseif d > 1 && d <= 10
Kcost=2+0.25*(d-1); % for distance greater then 1 and less than 10
elseif d > 10
Kcost=2+0.25*9+0.10*(d-10); % distance greater than 10
end
if (A<=18 || A>=60)
Kcost= 0.8*Kcost; %discount
end
end
0 commentaires
Voir également
Catégories
En savoir plus sur Startup and Shutdown dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!