题解 1223: 敲七游戏

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

筛选

敲七游戏——python

摘要:解题思路:注意事项:参考代码:N = int(input())s = 0for i in range(6,N+1):    if i%7 == 0 or '7'in str(i):  ……

敲七游戏 (C++代码)

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

敲七 (C语言代码)

摘要:#include <stdio.h> int main() { int i,num,count=0,o; scanf("%d",&num); for (i=1;i<=num;i++) ……

敲七游戏 (C语言代码)

摘要:解题思路:注意事项:参考代码:                #include<stdio.h>                int main()  

敲七 (C++代码)

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

敲七游戏-题解(C/C++) 与众不同的解法

摘要:> 本题明确给出数据规模:n不超过30000 也就是说,n最多是5位数,我们只需要知道每一位数是不是7即可 ------------ ##### 下面这种解法岂不是更加简单? ……

敲七游戏 (C++代码)

摘要://判断是否包含7以及是否被7整除,计数即可 #include <iostream> using namespace std; bool judge(int n) {     while(n……

【sor魔法再现】1223: 敲七游戏---史上最短AC代码,只有3行!来了,终于还是来了,python带着列表推导式来了,列表推导式+if条件判断,谁与争锋?

摘要:解题思路:【sor魔法再现】1223: 敲七游戏---史上最短AC代码,只有3行!来了,终于还是来了,python带着列表推导式来了,列表推导式+if条件判断,谁与争锋?注意事项:斐波那契数列?我不懂……