You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
## tabmult
|
|
|
|
|
|
|
|
### Instructions
|
|
|
|
|
|
|
|
Écrire un programme qui affiche la table de multiplication d'un nombre.
|
|
|
|
|
|
|
|
- Le paramètre sera toujours un nombre strictement positif qui rentre dans un `int`. Ce paramètre multiplié par 9 rentrera aussi dans un `int`.
|
|
|
|
|
|
|
|
### Utilisation
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
|
|
|
student@ubuntu:~/[[ROOT]]/test$ ./test 9
|
|
|
|
1 x 9 = 9
|
|
|
|
2 x 9 = 18
|
|
|
|
3 x 9 = 27
|
|
|
|
4 x 9 = 36
|
|
|
|
5 x 9 = 45
|
|
|
|
6 x 9 = 54
|
|
|
|
7 x 9 = 63
|
|
|
|
8 x 9 = 72
|
|
|
|
9 x 9 = 81
|
|
|
|
student@ubuntu:~/[[ROOT]]/test$ ./test 19
|
|
|
|
1 x 19 = 19
|
|
|
|
2 x 19 = 38
|
|
|
|
3 x 19 = 57
|
|
|
|
4 x 19 = 76
|
|
|
|
5 x 19 = 95
|
|
|
|
6 x 19 = 114
|
|
|
|
7 x 19 = 133
|
|
|
|
8 x 19 = 152
|
|
|
|
9 x 19 = 171
|
|
|
|
student@ubuntu:~/[[ROOT]]/test$
|
|
|
|
|
|
|
|
student@ubuntu:~/[[ROOT]]/
|
|
|
|
```
|