题解列表

筛选

1130: C语言训练-数字母

摘要:此题关键是使用isalpha()函数,注意读数据使用getline()。(尽管使用cin也能过)#include<bits/stdc++.h> using namespace std; int m……

1196: 去掉空格

摘要:关键是运用find()函数和erase()函数。#include<bits/stdc++.h> using namespace std;   int main(){     vector<in……

蓝桥杯算法提高VIP-插入排序

摘要:解题思路:  这题有问题注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; long long sum[200]……
优质题解

[ω] 最大子段乘积

摘要: 凑字数,不然发布出去凑字数,不然发布出去凑字数,不然发布出去凑字数,不然发布出去凑字数,不然发布出去凑字数,不然发布出去凑字数,不然发布出去凑字数,不然发布出去 ……

日期排序vector

摘要:``` #include using namespace std; int cmp(string m,string n) { string a,b; a=m.substr(……

简单的a+b(c++代码)

摘要:``` #include using namespace std; int main() { int a,b; while(cin >>a>>b) cout ……