Consider the given code snippet : int j = 10; do { MessageBox.Show(j); j-= 1; } while (j >=0); Which is the correct way to rewrite the above code?单项选择题

A
int j;for (j = 10; j >=0 ; j--) MessageBox.Show(j);
B
int j = 10;do while ( j >=0){ MessageBox.Show(j); j-= 1;}
C
int j = 10; while (j > 0){ MessageBox.Show(j); j -= 1; }
D
int j = 10; do{ MessageBox.Show(j);} until (j >=0);
登录即可查看完整答案
我们收录了全球超50000道真实原题与详细解析,现在登录,立即获得答案。
类似问题
Match each loop definition with how many iterations it’ll run for. 1: for k=1:2:10 2: for k=[3,7,10] 3: while 4<pi 4: for k=linspace(1,10,10)
Which of the following pseudocode statements represents a repetition statement?
Which of the following is a drawback of while loops?
For loops are more adaptable than while loops.
更多留学生实用工具
希望你的学习变得更简单
加入我们,立即解锁 海量真题 与 独家解析,让复习快人一步!