题解 1223: 敲七游戏

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

筛选

方便的find查找

摘要:#include<bits/stdc++.h> using namespace std; int main() {     int n,cnt=0;     cin>>n;     for……

普通的循环

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main {     public static void main(String[……

敲七游戏——python

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

1223: 敲七游戏

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

1223: 敲七游戏

摘要:```cpp #include using namespace std; int main() { int n,s=0; cin>>n; for(int i=7;……

1223一行解(Python)

摘要:注意事项:set用于数据清洗(集合元素的唯一性),取其长度-2即可(因为第一个数从0算起被认为是符合条件的,要去除,直接从1开始算那我也不反对,再减去集合中0的元素,即列表中表示不符合条件的元素)参考……

敲七游戏C++(没对的进来)

摘要:解题思路:不对的99%都是漏了带有7的数字首先是7的倍数,n%7就可以得出;个位:只有7且恰好是7的倍数;十位:x7、7x(以下x均表示任意1-9)            x7可以求末尾就行n%10=……