主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
xjnotywlq
2024年3月10日 14:31
7 题解:c语言
P1198
回复 0
|
赞 0
|
浏览 323
#include <stdio.h> #include <stdlib.h> int isrelate(int n){ if(n%7==0)return 1; while(n){ if(n%10==7)return 1; n/=10; } return 0; } int main() { i...
jhsf
2023年2月26日 15:03
c++
P1198
回复 0
|
赞 1
|
浏览 2.8k
#include<bits/stdc++.h> using namespace std; int main(){ int n,sum=0; while((scanf("%d",&n))!=EOF){ for(int i=1;i<=n;i++){ if((i%7==0)||(i%10==7)||(i/10==7)) ...
blackevil
2023年2月11日 14:19
关于‘7’一个较短解法
P1198
回复 0
|
赞 1
|
浏览 3.3k
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int INF=1e9; int n=0; string str,a,b; int strshu,x,y; int sum=0; stringstream ss; int main(){ ios::sync_with_stdio(false); cin.tie(0); cou...
橙子灰
2023年1月30日 23:31
7
P1198
回复 0
|
赞 0
|
浏览 2.5k
#include <bits/stdc++.h> using namespace std; bool isRel(int number) { if (number % 7 == 0) return true; while (number != 0) { int x = number % 10; if (x == 7) return true; number /= 10; } return false; } int main() { int number = 0; while (cin >> nu...
题目
7
题解数量
4
发布题解
热门题解
1
关于‘7’一个较短解法
2
c++
3
7
4
7 题解:c语言