a=input('enter number'); b=input('enter number'); c=input('enter operator'); switch c case'+' disp(a+b); case'-' disp(a-b); end

2 次查看(过去 30 天)
a=input('enter number');
b=input('enter number');
c=input('enter operator');
switch c
case'+'
disp(a+b);
case'-'
disp(a-b);
end
guyzz in this program i dnt knw about operator and second there is an error of operator.. make this progarm true and also from this switch statement..nor other.thak u.

回答(2 个)

James Tursa
James Tursa 2015-4-30
Input variable c as a string. E.g.,
c = input('enter operator','s')
  3 个评论
waqas khosa
waqas khosa 2015-4-30
no will tried it tomorrow in uni here setup is not running ...due to lisence key or something else.. i dont have more concern about it because i m engineering student.. not CS or related to this,,,

请先登录,再进行评论。


Kelvin Viroja
Kelvin Viroja 2016-8-22
U can easily do it by using if loop
a=input('enter number'); b=input('enter number'); c=input('enter operator','s'); d='+'; e='-';
if strcmp(c,d) G=a+b; else if strcmp (c,e) G=a-b; else end
disp(G);

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by