敲七 (C++代码) 摘要:#include<iostream> #include<vector> using namespace std; bool pandun(int m)//判断m里是否有7 { whil…… 题解列表 2017年10月24日 0 点赞 0 评论 1220 浏览 评分:8.7
敲七游戏 (C++代码) 摘要:解题思路:首先看这个数是否是7的倍数,之后不断循环除10 判断对10取模是否为7.注意事项:参考代码:#include<iostream> #include<algorithm> using na…… 题解列表 2018年04月12日 10 点赞 0 评论 1856 浏览 评分:9.2
敲七游戏 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; while(cin>>n) { …… 题解列表 2018年05月24日 0 点赞 0 评论 489 浏览 评分:0.0
敲七游戏 (C++代码)◑﹏◐ 摘要:解题思路: 感觉,在判断位数是否是含有7的时候大家的方法都一样,我也没有想到什么特殊的方法,只有一位一位的判断....... 就这样参考代码:#include<bits/s…… 题解列表 2018年12月12日 0 点赞 0 评论 551 浏览 评分:0.0
敲七游戏 (C++代码) 摘要://判断是否包含7以及是否被7整除,计数即可 #include <iostream> using namespace std; bool judge(int n) { while(n…… 题解列表 2019年02月25日 1 点赞 0 评论 548 浏览 评分:7.3
敲七游戏-题解(C++代码)【简单易懂】 摘要:### 敲七游戏 ```cpp #include using namespace std; int main() { int i=0; int n; int temp=0; …… 题解列表 2019年12月16日 0 点赞 0 评论 959 浏览 评分:9.9
敲七游戏-题解(C/C++) 与众不同的解法 摘要:> 本题明确给出数据规模:n不超过30000 也就是说,n最多是5位数,我们只需要知道每一位数是不是7即可 ------------ ##### 下面这种解法岂不是更加简单? …… 题解列表 2020年01月06日 0 点赞 0 评论 630 浏览 评分:7.5
敲七游戏-题解(C++代码) 摘要:```cpp #include using namespace std; int v[10]; int f(int n){//获取位数 int sum=1; while(1…… 题解列表 2020年04月19日 0 点赞 0 评论 471 浏览 评分:0.0
敲七游戏(暴力求解,简单明了) 摘要:解题思路:注意事项:参考代码:#include<vector>#include<iostream>#include<string>#include<algorithm>#include<cmath>#…… 题解列表 2022年02月04日 0 点赞 0 评论 229 浏览 评分:0.0
敲七游戏C++(没对的进来) 摘要:解题思路:不对的99%都是漏了带有7的数字首先是7的倍数,n%7就可以得出;个位:只有7且恰好是7的倍数;十位:x7、7x(以下x均表示任意1-9) x7可以求末尾就行n%10=…… 题解列表 2022年05月10日 0 点赞 0 评论 1135 浏览 评分:6.8