摘要: 1 #include <stdio.h> 2 int main() 3 { 4 int x,y,count=0; 5 int a[20]; 6 scanf("%d",&x); 7 while(x/2) 8 { 9 a[count++]=x%2; 10 x/=2; 11 }//循环结束 12 a[co 阅读全文
posted @ 2023-04-10 20:44 记得关月亮 阅读(11) 评论(0) 推荐(0) 编辑