You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
511 B
JavaScript

function matrix(n) {
var i;
var j;
for (i=0; i < n; i++)
{
for (j=0; j < n; j++)
{
if (i === j)
{
console.log(' 1 ');
}
else
{
console.log(' 0 ');}
}
console.log('----------');
}
}
matrix(4);