上一页 1 2 3 4 5 6 ··· 13 下一页
  2024年6月2日
摘要: #include<bits/stdc++.h> using namespace std; int main(){ int n,s[100],z; cin>>n; for(int i=0;i!=0;i++){ s[i]=n%2; z++; n/=2; } for(int i=z-1;i>=0;i--) 阅读全文
posted @ 2024-06-02 08:56 爱吃泡面的皮卡 阅读(8) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <vector> using namespace std; int main() { cout<<"input a number:"<<endl; int d; vector<int> vec; cin>>d; while (d) { vec 阅读全文
posted @ 2024-06-02 08:55 爱吃泡面的皮卡 阅读(46) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; int main() { long n; int p,c,m=0,s[100]; cout<<"输入要转换的数字:"<<endl; cin>>n; cout<<"输入要转换的进制:"<<endl; cin>>p; co 阅读全文
posted @ 2024-06-02 08:54 爱吃泡面的皮卡 阅读(16) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; int main(){ int n,s=1; cin>>n; while(n>0){ cout<<n%2; s++; n/=2; } return 0; } 阅读全文
posted @ 2024-06-02 08:52 爱吃泡面的皮卡 阅读(8) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; int main(){ int a[11]; for(int i=0;i<10;i++){ cin>>a[i]; } for(int i=0;i<10;i++){ for(int j=9;j>i;j--){ if(a[ 阅读全文
posted @ 2024-06-02 08:33 爱吃泡面的皮卡 阅读(6) 评论(0) 推荐(0) 编辑
  2024年5月4日
摘要: #include <iostream> #include <string> using namespace std; string t; int l, r, x/*未知数系数和*/, n/*常量和*/, mid; int main() { cin >> t; x = 0; while (t[mid] 阅读全文
posted @ 2024-05-04 08:12 爱吃泡面的皮卡 阅读(71) 评论(0) 推荐(0) 编辑
  2024年4月5日
摘要: #include <iostream> using namespace std; int main(){ int t,a[10]={1,2,3,4,5,6,7,8,9,10}; for(int i=1;i<=10;i++){ for(int j=i+1;j<=10;j++){ if(a[i]>a[j 阅读全文
posted @ 2024-04-05 09:54 爱吃泡面的皮卡 阅读(4) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; int main(){ int a[]={1,3,5,8,9,10,7,34,89,46}; int m=0; for(int i=1;i<10;i++){ for(int j=i;j>0;j--){ if(a[j]< 阅读全文
posted @ 2024-04-05 09:54 爱吃泡面的皮卡 阅读(12) 评论(0) 推荐(0) 编辑
  2024年3月24日
摘要: int count=0; for (int k=0;k<100;k++){ count++; } cout<<cunt; //程序执行次数:100 //时间复杂度:O(1) int count=0; for(int k=0;k<2*N;k++){ count++; } int M=10; while 阅读全文
posted @ 2024-03-24 09:47 爱吃泡面的皮卡 阅读(13) 评论(0) 推荐(0) 编辑
  2024年3月17日
摘要: #include <iostream> #include <vector> using namespace std; #define list 1 struct a{ string name; int id; int age; string Class; }index; void MAIN(){ c 阅读全文
posted @ 2024-03-17 09:57 爱吃泡面的皮卡 阅读(9) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 13 下一页