主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
孙某人
2024年10月7日 17:18
与7无关的数 题解:多人喝酒游戏
P1235
回复 0
|
赞 0
|
浏览 257
while True: try: n = int(input()) sum = 0 for i in range(1,n+1): if i%7!=0 and i%10!=7 and i/10!=7: sum = sum + i*i print(sum) except: break
My_opt
2022年4月26日 17:12
c++
P1235
回复 0
|
赞 0
|
浏览 4.2k
#include <iostream> using namespace std; int n; bool judge(int x) { if (x % 7 == 0) return true; for (; x; x /= 10) if (x % 10 == 7) return true; return false; } int main() { while (cin >> n) { int res = 0; for (int i = 1; i <= n; i ++ ) if (!ju...
ymw1836828452
2020年4月14日 20:41
P1235题解
P1235
回复 0
|
赞 0
|
浏览 7.9k
#include <iostream> using namespace std; class qi {public: int *q77(int a[],int n,int &j) {int i,*q,k; q=a; for(i=0,k=0;i<n;i++) { if(a[i]%7==0||a[i]/10==7||a[i]%10==7) &nb...
题目
与7无关的数
题解数量
3
发布题解
热门题解
1
与7无关的数 题解:多人喝酒游戏
2
P1235题解
3
c++