Can this simple script be done without calling a function?
조회 수: 1 (최근 30일)
이전 댓글 표시
hi,im new to matlab here
im trying to write a script that would prompt a user if he have only $6 in his pocket,whether he would like to buy apples or oranges(mutually exclusive,he cannot choose to buy apple if he bought orange vice versa) and lastly show him how many apple or orange he can buy depending on which option he chose.(the cost of apple is $0.50 each while cost of orange is $1.50 each.)
can i do these in a single script without calling any functions?
this is what i tried:
AorO=input('would you like to buy apples or oranges?')
if AorO==A
A=6/.5
fprintf('the amount of orange you can buy is %.2f\n',O)
else AorO==O
O=6/1.5
fprintf('the amount of orange you can buy is %.2f\n',O)
however i keep getting this error: Undefined function or variable A or O...
can the experts here kindly advise on my script?
Thanks lot in advance!!
댓글 수: 0
답변 (3개)
Walter Roberson
2013년 9월 24일
AorO=input('would you like to buy apples or oranges?', 's')
if AorO=='A'
and so on
Ilham Hardy
2013년 9월 24일
Please learn how to use debug mode..
AorO=input('would you like to buy apples or oranges?','s');
if AorO=='A'
A=6/.5;
fprintf('the amount of orange you can buy is %.2f\n',A)
elseif AorO=='O';
O=6/1.5;
fprintf('the amount of orange you can buy is %.2f\n',O)
end
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!