Jump to content

Pascal's triangle: Difference between revisions

→‎{{header|AWK}}: {{Out}}<pre>
({{Out}})
(→‎{{header|AWK}}: {{Out}}<pre>)
Line 199:
 
=={{header|AWK}}==
<lang awk>$ awk 'BEGIN{for(i=0;i<6;i++){c=1;r=c;for(j=0;j<i;j++){c*=(i-j)/(j+1);r=r" "c};print r}}'</lang>
{{Out}}<pre>
1
1 1
Line 205 ⟶ 206:
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1</lang>
</pre>
 
=={{header|BASIC}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.