aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int m,k,ans=0; cin>>m>>…… 题解列表 2023年07月12日 0 点赞 0 评论 161 浏览 评分:0.0
2820: 含k个3的数 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { long int m,n; int s…… 题解列表 2023年12月26日 0 点赞 0 评论 89 浏览 评分:0.0
题解 2820: 含k个3的数 摘要:解题思路:1.ss是为了和d比较;2.只拆解数位,不和并数位注意事项:参考代码:#include <iostream>using namespace std;int main(){ long l…… 题解列表 2024年01月17日 0 点赞 0 评论 56 浏览 评分:0.0
感谢支持,谢谢大家,含k个3的数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int m,k,n,b,i,YES=0,NO=0; …… 题解列表 2023年07月12日 0 点赞 0 评论 136 浏览 评分:0.0
循环每一位的值,用%10求余+/10更新;初始值比较需要另设n保存 摘要:解题思路:1.循环每一位的值,用%10求余+/10更新。2.中间值需要用count储存,加入if判断。3.while会让原始值降至0,因此初始值的比较需要另设n保存。参考代码:#include<ios…… 题解列表 2024年12月06日 0 点赞 0 评论 47 浏览 评分:0.0
题解 2820: 含k个3的数 摘要: #include using namespace std; int main(){ int a,b,c,d,i=0; cin>>a>>b; …… 题解列表 2023年11月17日 0 点赞 0 评论 55 浏览 评分:0.0
2820: 含k个3的数 摘要:解题思路:注意事项:仅供参考,禁止抄袭参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long F,B,I,p…… 题解列表 2024年01月17日 0 点赞 0 评论 47 浏览 评分:0.0
编写题解 2820: 含k个3的数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int jgs(int n) { int j=0;while(n){if(n%10=…… 题解列表 2024年05月26日 0 点赞 0 评论 78 浏览 评分:0.0
C++简单解含k个3的数 摘要:#### 解题思路 先设置一个循环对输入的m进行取模,如果它等于3,那么count计数器就++; 然后再通过逻辑表达式对满足条件的的m进行判断(输出"YES"还是"NO") #### 注意事项 …… 题解列表 2023年06月26日 0 点赞 0 评论 497 浏览 评分:8.2
2820: 含k个3的数 摘要:``` #include using namespace std; int m,k,n,x; int main(){ cin>>m>>k; x=m; for( int i=1;i…… 题解列表 2023年11月14日 0 点赞 0 评论 105 浏览 评分:9.9