How do I display squares of all even integers from zero to some positive integer input by the the user.And the program must continuously request a number from the user untill a valid a positive integer is entered
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
My code so far: M=input(enter integer) for c=0:m if (mod(m,2)==0) disp(m*m) end end
0 commentaires
Réponses (1)
Rafael Hernandez-Walls
le 30 Août 2020
M=input('enter integer:');
for c=0:M
if mod(c,2)==0
c^2
end
end
0 commentaires
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!