first commit with existing project files

This commit is contained in:
Vincent Guillet
2025-04-02 11:33:15 +02:00
parent f447ea8a0f
commit c8e200b42f
18 changed files with 515 additions and 0 deletions

12
algo_js/multiplication.js Normal file
View File

@@ -0,0 +1,12 @@
const prompt = require('prompt-sync')();
// Table de multiplication
let n = parseInt(prompt("Entrez un nombre entier : "));
let table = "";
for (let i = 1; i <= 9; i++) {
table += `${n} x ${i} = ${n * i}\n`;
}
console.log(table);