what does x='1' mean
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
mariam moutaz
am 25 Feb. 2021
Bearbeitet: mariam moutaz
am 25 Feb. 2021
x='1'
y='2'
disp(x+y)
why is the answer 99
2 Kommentare
Matt J
am 25 Feb. 2021
Did you run the code? If so, you should be able to tell us what the answer is.
Akzeptierte Antwort
David Hill
am 25 Feb. 2021
The + converts the characters into their double equivalent so they can be added.
double('1')+double('2');% = 99
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!