Info
This question is closed. Reopen it to edit or answer.
Write a Matlab code to add numbers until the user enters zero using while loop?
1 view (last 30 days)
Show older comments
just give me simple code plss
1 Comment
James Tursa
on 1 Feb 2022
What have you done so far? What specific problems are you having with your code?
Answers (2)
Walter Roberson
on 1 Feb 2022
There is no simple code for that. Your code needs to take into account these possibilities:
- the user enters no input (just presses return)
- the user enters a vector of numeric values, none of which is 0
- the user enters a vector of numeric values, one of which is 0 -- not necessarily the last of them
- the user enters a character vector or string or cell array or other non-numeric value
- the user enters negative 0
- the user enters different data types. For example if the user enters -3 +1 uint8(1) 0 then what result is to be expected ?
0 Comments
Image Analyst
on 1 Feb 2022
Edited: Image Analyst
on 1 Feb 2022
Hint:
theSum = 0
while something
thisNumber = input(..........)
% code
theSum = theSum + ..............
end
You should be able to figure it out. If you can't go over this before replying:
and this:
0 Comments
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!