题解 2304: 蓝桥杯2019年第十届省赛真题-特别数的和

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

纯代码无注释

摘要:```cpp #include #include using namespace std; bool judge(int k) { string str=to_string(k);//数……

暴力模拟!!

摘要:```cpp #include using namespace std; bool check(int k){ int isflag = 0; while(k){ ……

好理解的c++解法

摘要:#include<bits/stdc++.h>using namespace std;int main(){    int n;    cin>>n;    int sum=0;       for(……

练练用vector容器解题

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>#include<vector>using namespace std;const int N=10010;int n,su……