6 lines
91 B
Text
6 lines
91 B
Text
n=5;
|
|
For[i=1,i<=5,i++,
|
|
string="";
|
|
For[j=1,j<=i,j++,string=string<>"*"];
|
|
Print[string]
|
|
]
|