#include <stdio.h>
int main(){
int high=80;
int i;
for(i=0;i<6;i++){
high/=2;
printf("the height of the current is %d\n",high);
}
printf("the height of the sixth is %d\n",high);
return 0;
}
#include <stdio.h>
int main(){
int high=80;
int i;
for(i=0;i<6;i++){
high/=2;
printf("the height of the current is %d\n",high);
}
printf("the height of the sixth is %d\n",high);
return 0;
}
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。