上一页 1 ··· 35 36 37 38 39
摘要: #include<iostream> #include <iomanip> using namespace std; int main() { int sum=0; int i,j; cin>>j; char a[20]; cin>>a; for(i=0;a[i]!=0;i++) { sum=(su 阅读全文
posted @ 2023-04-11 19:41 记得关月亮 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 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) 编辑
上一页 1 ··· 35 36 37 38 39