21 lines
296 B
Java
21 lines
296 B
Java
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);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|