摘要:
#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 阅读全文
摘要:
#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]> 阅读全文
摘要:
代码: #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--; 阅读全文
摘要:
代码: #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;// 阅读全文
摘要:
#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] 阅读全文
摘要:
1. Windows操作系统及软件Windows操作系统是1985年美国微软公司研发的操作系统,分为32位和64位。微软开发的软件包含:office系列办公软件,word,PowerPoint,Excel,access等,在Windows操作系统中可执行文件是以.exe为扩展名。1. Linux操作 阅读全文
摘要:
中缀表达式转前缀表达式: 举例:(1+2)/3*4 1.根据正常的运算顺序,应该先算(1+2),所以这里先改(1+2): 括号可以去掉,变成1+2,把1+2看成是xyz形式,‘1’对应x,‘+’对应y,‘2’对应z;然后改成yxz形式,也就是+12。 2.随后把(+12)看作一个整体(加上括号便于区 阅读全文
摘要:
#include <bits/stdc++.h> #include <fstream> using namespace std; int main(){ ofstream out; string name; int name1; ifstream outfile; outfile.open("out 阅读全文
摘要:
#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]-' 阅读全文