What would the output from the following be:
```
boolean continue = true ;
int count = 0 ;
int max = 2 0 ;
while ( continue )
{
System . out . p r i n t l n ( count ) ;
count++;
max++;
i f ( count > 10 j j max > 40)
continue = fal se ;
}
```
Actually this gives an error message because you can't use the reserved word
continue as a variable name. If you don't use continue you get:
0
1
2
3
4
5
6
7
8
9
10
You might also like to view...
Inside a function definition for a member function of an object with data element x, which of the following is not equivalent to this->x:
a. *this.x b. (*this).x c. x d. (* (& (*this) ) ).x
A legend is a chart element that identifies the patterns or colors assigned to each category of a chart
Indicate whether the statement is true or false
Which dialog box allows the user to print all comments?
A) Print B) Page Layout C) Backstage D) Page Setup