[basic] chessBoard

main
Vasily Guzov 1 year ago
parent 17f68f2885
commit 10ad87d9a4

@ -0,0 +1,24 @@
function chessBoard(size: number) {
let output = "";
let sizeV = size;
for (let h = 1; h <= size; h++) {
const isEven = h % 2 === 0;
for (let v = 1; v <= sizeV; v++) {
if (isEven) {
output += v % 2 !== 0 ? "#" : " ";
} else {
output += v % 2 === 0 ? "#" : " ";
}
if (v === sizeV) output += "\n"
}
}
console.log(output)
}
chessBoard(8);
Loading…
Cancel
Save