敲七游戏 (C++代码) 摘要://判断是否包含7以及是否被7整除,计数即可 #include <iostream> using namespace std; bool judge(int n) { while(n…… 题解列表 2019年02月25日 1 点赞 0 评论 548 浏览 评分:7.3
【sor魔法再现】1223: 敲七游戏---史上最短AC代码,只有3行!来了,终于还是来了,python带着列表推导式来了,列表推导式+if条件判断,谁与争锋? 摘要:解题思路:【sor魔法再现】1223: 敲七游戏---史上最短AC代码,只有3行!来了,终于还是来了,python带着列表推导式来了,列表推导式+if条件判断,谁与争锋?注意事项:斐波那契数列?我不懂…… 题解列表 2021年11月21日 0 点赞 0 评论 300 浏览 评分:7.3
敲七游戏-题解(C/C++) 与众不同的解法 摘要:> 本题明确给出数据规模:n不超过30000 也就是说,n最多是5位数,我们只需要知道每一位数是不是7即可 ------------ ##### 下面这种解法岂不是更加简单? …… 题解列表 2020年01月06日 0 点赞 0 评论 629 浏览 评分:7.5
敲七游戏-题解(C语言代码)值得参考 摘要:###### 参考代码如下: #include int judge(int n) { if(n%7==0) return 1; i…… 题解列表 2019年12月02日 0 点赞 0 评论 820 浏览 评分:8.4
敲七 (C++代码) 摘要:#include<iostream> #include<vector> using namespace std; bool pandun(int m)//判断m里是否有7 { whil…… 题解列表 2017年10月24日 0 点赞 0 评论 1220 浏览 评分:8.7
敲七 (C语言代码) 摘要:#include <stdio.h> int main() { int i,num,count=0,o; scanf("%d",&num); for (i=1;i<=num;i++) …… 题解列表 2017年10月25日 8 点赞 4 评论 2787 浏览 评分:9.0
敲七游戏 (C语言代码) 摘要:解题思路:注意事项:参考代码: #include<stdio.h> int main() 题解列表 2019年05月01日 0 点赞 0 评论 1570 浏览 评分:9.0
敲七游戏 (C++代码) 摘要:解题思路:首先看这个数是否是7的倍数,之后不断循环除10 判断对10取模是否为7.注意事项:参考代码:#include<iostream> #include<algorithm> using na…… 题解列表 2018年04月12日 10 点赞 0 评论 1855 浏览 评分:9.2
敲七游戏-题解(C语言代码) 摘要:```c #define _CRT_SECURE_NO_WARNINGS 1 #include #define N 50000 //考虑到存在7和7的倍数有重合的情况,故用数组标记法比较合适 …… 题解列表 2020年03月04日 0 点赞 0 评论 719 浏览 评分:9.9
1223: 敲七游戏 摘要:```cpp #include using namespace std; int main() { int n,s=0; cin>>n; for(int i=7;…… 题解列表 2023年01月11日 0 点赞 0 评论 260 浏览 评分:9.9