9 lines
115 B
Text
9 lines
115 B
Text
int main() {
|
|
int a;
|
|
a = 5;
|
|
if (a != 8) {
|
|
while(a < 20){
|
|
a = a+2;
|
|
}
|
|
}
|
|
}
|