Computer Science, asked by kkumarhmi, 2 months ago

write a syntax of while loopĺ​

Answers

Answered by Anonymous
1

Answer:

while (//conditional expression)

        {

                //st1

                //st2

                ...

        }

WHERE -

conditional expression - the boolean expression

st1, st2, etc. - Executable Java statements

Similar questions