create a calculator using arithmetic operators
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
abdul rehman
el 28 de Abr. de 2020
Comentada: abdul rehman
el 28 de Abr. de 2020
a=input(prompt,'s');
c=2;
d=3;
h=6;
if a=='+'
e=c+d;
e
else
e=c-d;
e
end
what is wrong with this addition code?
0 comentarios
Respuesta aceptada
KSSV
el 28 de Abr. de 2020
prompt = 'Enter sign:' ;
a=input(prompt,'s');
c=2;
d=3;
h=6;
if strcmp(a,'+')
e=c+d;
e
else
e=c-d;
e
end
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!