题解 1223: 敲七游戏

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

筛选

没啥亮点,正常思路..

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){    int n,i,j,cnt=0;    scanf("%d",&n);    for(i=7;i<=n;……

方便的find查找

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

编写题解 1223: 敲七游戏

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

敲七游戏 (C语言代码)

摘要:#include <stdio.h>int main(){     int i,j,N;     int count=0,flag=0;     scanf("%d",&N);     for(i=7……

敲七游戏 (Java代码)

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