2828:与7无关的数 摘要:解题思路:题目规定n的范围是一位或二位整数,所以只考虑一位、二位和被7整除的情况即可。建议反向思考,从与7有关的条件考虑,再把条件全部反过来。注意事项:参考代码:import java.util.Sc…… 题解列表 2023年12月13日 0 点赞 0 评论 103 浏览 评分: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
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
与7无关的数(自定义函数) 摘要:参考代码: ```c #include int m(int a)//这个函数是判断它的十进制表示法中某一位上的数字是否为7,感觉放在主函数太挤了,干脆拿出来了 { int b=a,k…… 题解列表 2023年09月13日 0 点赞 0 评论 110 浏览 评分:0.0
与7无关的数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,t=0,s=0; scanf("%d",&n); for(int i=1;i<=…… 题解列表 2023年07月30日 0 点赞 2 评论 365 浏览 评分:9.9
2828: 与7无关的数 用自定义函数来解决问题,抛砖引玉吧 摘要:解题思路:这个题目其实并不难,因为已经定义了n小于100,所以如果用暴力的方法直接写条件i%7!=0&&(i/10%10)!=7&&(i%10)!=7 就能解决问题,这里,我想用函数来判断这个数与7的…… 题解列表 2023年04月13日 0 点赞 0 评论 202 浏览 评分:9.9
与7无关的数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h> int main(){ int n,num=0 ; int i; int sum=0; int …… 题解列表 2023年02月13日 0 点赞 0 评论 153 浏览 评分:0.0
与“你”无关的数=_=|| 摘要:解题思路: 这个很简单,想看优质答案的小伙伴请下滑>_<注意事项: 重要的事说三遍,定义变量记得初始化>_<参考代码:#include<stdio.h>int main()…… 题解列表 2023年01月08日 0 点赞 0 评论 433 浏览 评分:9.9
(c语言)详细解读 摘要:解题思路:注意事项:参考代码: #include"stdio.h"void main(){ int s7[100]={}; //不是与7有关的记录在…… 题解列表 2023年01月03日 0 点赞 0 评论 110 浏览 评分:0.0
编写题解 2828: 与7无关的数 摘要:解题思路:注意事项:参考代码://编写题解 2828: 与7无关的数 //一个正整数,如果它能被7整除,或者它的十进制表示法中某一位上的数字为7,则称其为与7相关的数。现求所有小于等于n(n < 1…… 题解列表 2023年01月01日 0 点赞 0 评论 114 浏览 评分:0.0