题解 1223: 敲七游戏

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

筛选

题解 1223: 敲七游戏

摘要:参考代码:#include<stdio.h>#include<string.h>int quyu(int n){    if(n%7==0)        return 1;    else     ……

敲七游戏-题解(C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){     int n, i, flag, m, t;     m = 0;     flag = 0;     s……

敲七游戏-题解(Python代码)

摘要:```python num = int(input()) count = 0 for i in range(2, num + 1): # 如果i能被7整除,则count+1并跳过本次循环……

敲七游戏-题解(C语言代码)

摘要:```c #define _CRT_SECURE_NO_WARNINGS 1 #include #define N 50000 //考虑到存在7和7的倍数有重合的情况,故用数组标记法比较合适 ……

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

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