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.
|
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();
|
|
}
|