summaryrefslogtreecommitdiff
path: root/260/CH1/EX1.20/1_20.sce
blob: 603ecd34ef1d6f76feb44b6e4da0395564c92f1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Eg-1.20
//pg-35

clear
clc

summ=0;
for i=1:9;
   summ=summ+i;
end
disp("sum of first 9 natural no.s")
disp(summ)