首页 新闻 会员 周边 捐助
5
回答数

待解决问题 C语言初学者对for循环的一个疑问

#include<stdio.h> int main(){ int value; for(value = 4; value > 0; value /=2) printf("%d",value); re