Sum of first 100 integers?

47 visualizaciones (últimos 30 días)
Ian
Ian el 3 de Feb. de 2014
Comentada: Jan el 15 de Mzo. de 2022
Write a script that uses a for loop to calculate the sum of the first 100 integer numbers

Respuesta aceptada

Mischa Kim
Mischa Kim el 3 de Feb. de 2014
Editada: Mischa Kim el 3 de Feb. de 2014
my_sum = 0;
for ii = 1:100
my_sum = my_sum + ii;
end

Más respuestas (4)

Sean de Wolski
Sean de Wolski el 3 de Feb. de 2014
for ii = 100
s = sum(1:ii);
end

Roger Stafford
Roger Stafford el 3 de Feb. de 2014
Editada: Roger Stafford el 3 de Feb. de 2014
Or you could emulate the mathematical genius, Karl Friedrich Gauss, who is said to have done it this way at the age of ten:
s = (100+1)+(99+2)+(98+3)+...+(51+50) = 50*101 = 5050
  2 comentarios
Ian
Ian el 3 de Feb. de 2014
Gotta love good ol' Gauss!
Jan
Jan el 4 de Mzo. de 2021
This means as code:
n = 100;
s = (n * (n + 1)) / 2

Iniciar sesión para comentar.


Mayur Gaikwad
Mayur Gaikwad el 7 de Dic. de 2017
Could someone write the script for matlab mobile version for the sum of the squares of first 100 natural numbers.. !
  1 comentario
Jan
Jan el 7 de Dic. de 2017
Yes. Simply add a "^2" in Mischa's answer.
Please do not inject a new question as an answer to an existing thread. Such thread-hijacking confuses the readers, because it is not clear anymore, to which question an answer belongs.
Because this sounds like a homework, let me encourage you to try to solve this by your own.

Iniciar sesión para comentar.


Bhanuprasad Akula
Bhanuprasad Akula el 3 de Mzo. de 2021
sum(1:100)
  1 comentario
Jan
Jan el 15 de Mzo. de 2022
"uses a for loop"...

Iniciar sesión para comentar.

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by