题解 1223: 敲七游戏

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

筛选

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

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

题解 1223: 敲七游戏

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

1223: 敲七游戏

摘要:解题思路:一行解,融入许多函数,运行很爽。注意事项:参考代码:print(len(set(list(map(lambda x : x+1 if (x % 7 == 0 or &#39;7&#39; i……

编写题解 1223: 敲七游戏

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

敲七游戏 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; while(cin>>n) { ……

敲七游戏 (C++代码)◑﹏◐

摘要:解题思路:        感觉,在判断位数是否是含有7的时候大家的方法都一样,我也没有想到什么特殊的方法,只有一位一位的判断.......        就这样参考代码:#include<bits/s……