题解 1223: 敲七游戏

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

筛选

敲七游戏 (C++代码)

摘要:解题思路:首先看这个数是否是7的倍数,之后不断循环除10 判断对10取模是否为7.注意事项:参考代码:#include<iostream> #include<algorithm> using na……

敲七 (C++代码)

摘要:#include<iostream> #include<vector> using namespace std; bool pandun(int m)//判断m里是否有7 { whil……