摘要: #include <bits/stdc++.h> using namespace std; int main() { int n; map<string,int> a; string x; cin>>n; int sum = 0; for(int i = 1;i<=n;i++){ cin>>x; i 阅读全文
posted @ 2024-11-04 21:58 王一行(小号) 阅读(12) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; string a,b; bool f(){ if(a.size()>b.size()){ return true; }else{ for(int i = 0;i<a.size();i++){ if(b[i]> 阅读全文
posted @ 2024-10-24 22:13 王一行(小号) 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 代码: #include <bits/stdc++.h> using namespace std; int a[100005]; bool a1[100005]; int main(){ int i = 1; while(cin>>a[i]){ a1[i] = false; i++; } i--; 阅读全文
posted @ 2024-10-20 14:37 王一行(小号) 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 代码: #include <bits/stdc++.h> using namespace std; int main(){ int k;//K次询问 cin>>k;//输入 for(int x = 1;x<=k;x++){//循环K次 int w,s;//称重上限和金属种类 cin>>w>>s;// 阅读全文
posted @ 2024-10-19 16:02 王一行(小号) 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2024-10-12 19:41 王一行(小号) 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; int main(){ int n,x; cin>>n>>x; cout<<"小苞的桌上一共放了"<<n<<"个苹果。"<<endl; int a[n+5]; for(int i = 1;i<=n;i++){ a[i] 阅读全文
posted @ 2024-10-04 19:56 王一行(小号) 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 1. Windows操作系统及软件Windows操作系统是1985年美国微软公司研发的操作系统,分为32位和64位。微软开发的软件包含:office系列办公软件,word,PowerPoint,Excel,access等,在Windows操作系统中可执行文件是以.exe为扩展名。1. Linux操作 阅读全文
posted @ 2024-09-15 15:16 王一行(小号) 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 中缀表达式转前缀表达式: 举例:(1+2)/3*4 1.根据正常的运算顺序,应该先算(1+2),所以这里先改(1+2): 括号可以去掉,变成1+2,把1+2看成是xyz形式,‘1’对应x,‘+’对应y,‘2’对应z;然后改成yxz形式,也就是+12。 2.随后把(+12)看作一个整体(加上括号便于区 阅读全文
posted @ 2024-08-03 21:04 王一行(小号) 阅读(39) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> #include <fstream> using namespace std; int main(){ ofstream out; string name; int name1; ifstream outfile; outfile.open("out 阅读全文
posted @ 2024-07-29 14:51 王一行(小号) 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; int main(){ string a,b; cin>>a>>b; vector<int> x,y; for(int i = a.size()-1;i>=0;i--){ x.push_back(a[i]-' 阅读全文
posted @ 2024-07-28 20:09 王一行(小号) 阅读(6) 评论(0) 推荐(0) 编辑