From 2c5ec0e958a8711da05c0a83f2ca74fda2c8ed03 Mon Sep 17 00:00:00 2001 From: Meutel Date: Thu, 30 May 2019 18:33:27 +0200 Subject: [PATCH] Tables multiplication --- TableMult.java | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 TableMult.java diff --git a/TableMult.java b/TableMult.java new file mode 100644 index 0000000..4728f4b --- /dev/null +++ b/TableMult.java @@ -0,0 +1,20 @@ +import static utils.Utils.*; + +public class TableMult { + + public static final void main(String[] args) { + afficher("Tables de multiplication"); + + + +for(int table = 1; table <= 9; table++){ + for(int mult = 1; mult <= 9; mult++){ + afficher(table, "x", mult, "=", table*mult); + } +} + + + + } + +}