有一个简单的while循环并尝试使其成为for循环
i=1 while(i<=128) { printf("%d",i); i*=2; }
这是我的for循环
for (i=1;i<=128;i++) { printf("%d",i); i*=2; }
解决方法
因为你也在for循环中递增i.在你原来的while循环中,我永远不会增加.
试试这个:
for (i=1; i<=128; i*=2) // Remove i++,move the i*=2 here. { printf("%d",i); }