bonjour , j'ai un probleme de comprehension , je voudrai savoir pourquoi ce programme m'execute :alors que je cherche :Code:1 2 2 2 2 2 2 2
Merci de votre aide ; Voici le code.Code:1 2 3 4 5 6 7 8 9 10
Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 #include <stdio.h> int main () { printf ("1\t"); int i = 1; int j = 2; int k = i * j ; while (j != 11) { printf ("%i\t",k); j++; } return 0 ; }