Trying to get an answer for 'a' - while loop??
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Aleksandar Denchev
il 7 Mar 2023
Modificato: John D'Errico
il 7 Mar 2023
a=0
while a<5
a = a + 2;
end
disp (a)
What is the answer for 'a'?
Risposta accettata
Constantino Carlos Reyes-Aldasoro
il 7 Mar 2023
Run the code!
a=0
while a<5
a = a + 2;
end
disp (a)
1 Commento
John D'Errico
il 7 Mar 2023
Modificato: John D'Errico
il 7 Mar 2023
Please, when something is this obviously a homework assignment, please do not just give the student the code to do their homework. It does not help the student. It does not help the site, as it just encourages this student to ask their homework questions with absolutely no effort made on their part. And that encourages other students to do the same.
If you want to offer some help to the student, try pushing them in the right direction. But make them do the work, as otherwise, they will just keep on posting their homework.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!