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.
19 lines
212 B
19 lines
212 B
11 months ago
|
int doubleWhile() {
|
||
|
int i;
|
||
|
i = 5;
|
||
|
int j;
|
||
|
j = 7;
|
||
|
while (i < 100) {
|
||
|
i = i + 30;
|
||
|
while(j < 100){
|
||
|
j = j + 6;
|
||
|
}
|
||
|
j = j - 100;
|
||
|
}
|
||
|
return (j);
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
return doubleWhile();
|
||
|
}
|