Niveau 1 - Dans l'arène, face à un expert JAVA
Difficulté :
Quel mot se cache dans ce tableau si l'on converti son contenu par des caractères ?
public static void main(String args[]){
int tab[] = new int[7];
for(int i=2;i>=0;i--){
switch(i){
case 0:
tab[i+5]=111;
tab[i+6]=100;
tab[i+4]=99;
break;
case 1:
tab[i+1]=101;
tab[i+2]=112;
break;
default:
tab[i-1]=101;
tab[i-2]=107;
}
}
}
Tableau ascii
97
98
99
100
101
102
103
104
105
106
107
108
109
a
b
c
d
e
f
g
h
i
j
k
l
m
110
111
112
113
114
115
116
117
118
119
120
121
122
n
o
p
q
r
s
t
u
v
w
x
y
z