summaryrefslogtreecommitdiff
path: root/3808/CH2/EX2.10/Ex2_10.sce
blob: 5aaa571dfb294238d002c1d4da29dfe769aac743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Chapter 02:Basic Structures: Sets, Functions, Sequences, Sums and Matrices

clc;
clear;

a=[]
i=1
for i=1:10
    for j =1:i
        mprintf("%d   ",i)
end
end