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

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

筛选

暴力模拟!!

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

纯代码无注释

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