Int m=5, n=10;
While (n>=1)
{ System.out.printIn(m*n);
n- - ;
}
b) Write the output of above loop
Answers
Answered by
1
Explanation:
Analyze the following code. Is count < 100 always true, always false, or sometimes true or sometimes false at Point A, Point B, and Point C?
int count = 0;
while (count < 100) {
// Point A
System.out.println("Welcome to Java!");
count++;
// Point B
}
// Point C
Similar questions