2828: 与7无关的数 摘要:``` #include using namespace std; int n,sum,ans; int main(){ cin>>n; for( int i=1;i…… 题解列表 2023年11月20日 0 点赞 0 评论 67 浏览 评分:0.0
编写题解 2828: 与7无关的数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;bool bsq(int n) { for(int i=1;i<=n;i++) { …… 题解列表 2024年05月26日 0 点赞 0 评论 53 浏览 评分:0.0
题解 2828: 与7无关的数 摘要: #include using namespace std; int main(){ int a,sum,ans=0; cin>>a; …… 题解列表 2023年11月21日 0 点赞 0 评论 173 浏览 评分:7.3
与7无关的数 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cmath>using namespace std;int main(){ int n; cin >…… 题解列表 2024年10月31日 0 点赞 0 评论 73 浏览 评分:7.3
2828: 与7无关的数 用自定义函数来解决问题,抛砖引玉吧 摘要:解题思路:这个题目其实并不难,因为已经定义了n小于100,所以如果用暴力的方法直接写条件i%7!=0&&(i/10%10)!=7&&(i%10)!=7 就能解决问题,这里,我想用函数来判断这个数与7的…… 题解列表 2023年04月13日 0 点赞 0 评论 202 浏览 评分:9.9