Jump to content

Multiplication tables: Difference between revisions

→‎{{header|AWK}}: delete ';', printf is a statment
(BASIC | Applesoft BASIC)
(→‎{{header|AWK}}: delete ';', printf is a statment)
Line 211:
for(i=1;i<13;i++){
for(j=1;j<13;j++){
if(j>=i||j==1){printf( "%4d",i*j);}
else {printf( " ");}
}
print;
}
}
Cookies help us deliver our services. By using our services, you agree to our use of cookies.