欢迎各位新手,哪里有不对的请多多包涵,一起学习一起努力 摘要:解题思路: 根据题目给出1<k<100,其中每个数都是大于等于1 小于等于10的数 …… 题解列表 2025年06月16日 1 点赞 0 评论 113 浏览 评分:10.0
c++解法(新手) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c,d…… 题解列表 2025年06月15日 1 点赞 0 评论 111 浏览 评分:10.0
有错误请指出 摘要:解题思路:switch 选择注意事项:参考代码:#include <stdio.h>int main(){ int a,b=0,c=0,d=0,n; scanf("%d",&n); in…… 题解列表 2022年12月20日 0 点赞 0 评论 393 浏览 评分:9.9
2803: 整数的个数(C语言,数组解法) 摘要: #include int main() { int n; scanf("%d",&n); int a[n]; int i; for(i=0;i…… 题解列表 2023年07月07日 0 点赞 0 评论 432 浏览 评分:9.9
对题2803:计算整数个数题解 摘要:解题思路:对应的数字出现之后对应的sum++注意事项:只需要统计1,5,10出现的次数即可,如果输入的整数中出现一次,则对应的sum++即可,注意不是判断数字1,5,10出现的次数,不要统计错了参考代…… 题解列表 2024年09月07日 0 点赞 0 评论 358 浏览 评分:9.9
c语言 小白也能看懂 摘要:解题思路:分别设置1,5,10的计数器,每输入一个数,判断是否是1、5、10,如果是,相应的计数器加一注意事项:无参考代码:#include<stdio.h>int main(){ int k,…… 题解列表 2022年11月20日 0 点赞 0 评论 375 浏览 评分:9.3
题解 2803: 整数的个数(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,k,i,j=0,y=0,z=0; scanf("%d",&k); for(i=1;i<=k;i++)…… 题解列表 2022年11月14日 0 点赞 0 评论 462 浏览 评分:8.7
2025/7/26刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int k; scanf("%d&qu…… 题解列表 2025年07月26日 0 点赞 0 评论 58 浏览 评分:0.0
题解 2803: 整数的个数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>int main()…… 题解列表 2025年01月25日 0 点赞 0 评论 202 浏览 评分:0.0
送分了........ 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c=0,d=0,e=0; scanf("%d",&a); while(a) …… 题解列表 2024年11月26日 0 点赞 0 评论 251 浏览 评分:0.0