This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const prompt = require("prompt-sync")(); | |
| let rowsQuantity; | |
| let columnsQuantity; | |
| let matrix = []; | |
| function getRowAndColumn(){ | |
| rowsQuantity = parseInt(prompt('how many rows does your matrix have? ')); | |
| columnsQuantity = parseInt(prompt('how many columns does your matrix have? ')); |
NewerOlder