How do I make a for loop for summing up to specified integer

How can I make a for loop for summing up integers starting at 0 and going to the integer the user inputs(user can choose any integer)
ex:
user inputs 3: 1+2+3
user inputs 6: 1+2+3+4+5+6

Answers (2)

clc
k=input('Enter no');
sum=0;
for n=1:k
sum=sum+n;
end
disp(sum)

1 Comment

'For' loop is not necessary for whay you wanted to do. You can rather use input function along with sum. However since you were specific to use for loop, above code is given

Sign in to comment.

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Asked:

on 18 Jun 2015

Commented:

on 19 Jun 2015

Community Treasure Hunt

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

Start Hunting!