diff options
Diffstat (limited to '3808/CH2/EX2.10/Ex2_10.sce')
-rw-r--r-- | 3808/CH2/EX2.10/Ex2_10.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3808/CH2/EX2.10/Ex2_10.sce b/3808/CH2/EX2.10/Ex2_10.sce new file mode 100644 index 000000000..5aaa571df --- /dev/null +++ b/3808/CH2/EX2.10/Ex2_10.sce @@ -0,0 +1,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 |