上一页 1 2 3 4 5 6 7 8 9 10 ··· 18 下一页
摘要: #include <iostream> #include <bitsed> using namespace std; int main(){ cout<<oct<<10<<endl; //转换为二进制,则需要引入bitset库头文件 cout<<bitset<sizeof(int)>(a); ret 阅读全文
posted @ 2024-12-28 08:37 爱吃泡面的皮卡 阅读(12) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; int main(int argc, char** argv) { system("title 梦幻西游启动"); printf("你出生一个在数千年前,蚩尤复活动乱,挑起仙魔大战,\n"); printf("人类、仙 阅读全文
posted @ 2024-12-27 19:26 爱吃泡面的皮卡 阅读(134) 评论(0) 推荐(0)
摘要: #include <iostream> #include <cstdio> using namespace std; struct no{ string name; int age; string blc; int shengao; int tizhong; }; int main(int argc 阅读全文
posted @ 2024-12-22 09:54 爱吃泡面的皮卡 阅读(7) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; struct st{ string st_name; int st_age; void d(){ cout<<st_name<<" "<<st_age; } }; struct c1{ string cl_name; s 阅读全文
posted @ 2024-11-30 09:51 爱吃泡面的皮卡 阅读(14) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; struct st{ string st_name; int st_age; }; struct c1{ string cl_name; st st1[7]; st st2[7]; }; struct a1{ c1 st 阅读全文
posted @ 2024-11-30 09:32 爱吃泡面的皮卡 阅读(15) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; struct student{ string student_name; int age; string Gender; }; struct Cless{ string Cless_name; student a[10 阅读全文
posted @ 2024-11-30 08:51 爱吃泡面的皮卡 阅读(10) 评论(0) 推荐(0)
摘要: #include <iostream> #include <iomanip> using namespace std; struct wo{ string Name; int ml; int id; int money; }; int main(){ int cl=10; wo teas; teas 阅读全文
posted @ 2024-11-30 08:09 爱吃泡面的皮卡 阅读(19) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; void sni(int a[],int b[],int c[]){ int an=4,bn=8,cn=12; int i=0,j=0,k=0; while(i<an&&j<bn){ if(a[i]>b[j]){ c[ 阅读全文
posted @ 2024-11-16 08:33 爱吃泡面的皮卡 阅读(17) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; void s(int a[100]){ for(int i=1;i<=10;i++){ for(int j=i+1;j<=10;j++){ if(a[i]>a[j]){ swap(a[i],a[j]); } } } f 阅读全文
posted @ 2024-11-10 09:33 爱吃泡面的皮卡 阅读(16) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; int main(){ int a[10]={1,3,5,7,9,8,6,4,2,10}; int b[11]; for(int i=0;i<11;i++){ b[i]=0; } for(int i=0;i<10;i+ 阅读全文
posted @ 2024-11-10 09:33 爱吃泡面的皮卡 阅读(17) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 18 下一页