请在 下方输入 要搜索的题目:

Which of the following will count down from 10 to 1 correctly? ( )


A、for(intj=10;j<=1;j++)
B、for(intj=1;j<=10;j++)
C、for(intj=10;j>1;j--)
D、for(intj=10;j>=1;j--)

发布时间:2025-11-10 13:44:45
推荐参考答案 ( 由 题搜搜 官方老师解答 )
答案:for (int j = 10; j >= 1; j--)
登录 - 搜搜题库网
立即注册
注册 - 搜搜题库网
立即登录