题解 2803: 整数的个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int k; long long sum=0,…… 题解列表 2024年01月10日 1 点赞 0 评论 156 浏览 评分:9.9
2803: 整数的个数 摘要:解题思路:注意事项:参考代码:a1 = a5 = a10 = 0k = int(input())l = list(map(int,input().split()))for i in l: if …… 题解列表 2023年02月06日 0 点赞 0 评论 223 浏览 评分:9.9
编写题解 2803: 整数的个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int k,sum1=0,sum5=0,sum10=…… 题解列表 2024年06月30日 0 点赞 0 评论 91 浏览 评分:9.9
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月11日 0 点赞 0 评论 114 浏览 评分: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 评论 277 浏览 评分:9.9
有错误请指出 摘要:解题思路:switch 选择注意事项:参考代码:#include <stdio.h>int main(){ int a,b=0,c=0,d=0,n; scanf("%d",&n); in…… 题解列表 2022年12月20日 0 点赞 0 评论 308 浏览 评分:9.9
对题2803:计算整数个数题解 摘要:解题思路:对应的数字出现之后对应的sum++注意事项:只需要统计1,5,10出现的次数即可,如果输入的整数中出现一次,则对应的sum++即可,注意不是判断数字1,5,10出现的次数,不要统计错了参考代…… 题解列表 2024年09月07日 0 点赞 0 评论 211 浏览 评分:9.9
整数的个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,a,one=0,five=0,ten=0…… 题解列表 2023年07月08日 0 点赞 0 评论 104 浏览 评分:9.9
题解 2803: 整数的个数 摘要:解题思路:注意事项:参考代码#include <iostream>using namespace std;int main(){ /*int sum=0; for(int i=0;i<=1…… 题解列表 2024年01月10日 0 点赞 0 评论 86 浏览 评分:9.9
编写题解 2803: 整数的个数题解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int k,a=0,b=0,c=0; cin>>k; int …… 题解列表 2024年05月08日 0 点赞 0 评论 68 浏览 评分:9.9