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--)
发布时间:2024-09-29 15:33:21
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--)