글수 22
<html>
<head>
<title>Untitled Document</title>
<style type="text/css">
</style>
</head>
<script>
var c=1;
document.write('<table border=1>');
for(var j=1;j<10;j++){
document.write('<tr>');
for(var i=2;i<10;i++){
document.write('<td>');
document.write(i+"x"+j+"="+i*j);
document.write('</td>');
}
document.write('</tr>');
}
document.write('</table>');
</script>
<body>
</body>
</html>


