题解 2803: 整数的个数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>int main()…… 题解列表 2025年01月25日 0 点赞 0 评论 16 浏览 评分:0.0
整数的个数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int k,a,i;/*b为1出现的次数*/ int b=0; int c=0; int d=0; scan…… 题解列表 2023年02月03日 0 点赞 0 评论 104 浏览 评分:0.0
2803: 整数的个数 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n,arr[100],s1=0,s2=0…… 题解列表 2023年11月17日 0 点赞 0 评论 130 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a[100],i; scanf("%d", &n); for(i=0;i<n;i+…… 题解列表 2023年05月30日 0 点赞 0 评论 83 浏览 评分:0.0
2803: 整数的个数 摘要:解题思路:注意事项:定义变量后要赋值参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int k,sum1=0,sum5=…… 题解列表 2024年06月30日 0 点赞 0 评论 57 浏览 评分:0.0
数组加上循环 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n,i,y=0,w=0,s=0; scanf("%d",&n); int k[n];…… 题解列表 2023年08月22日 0 点赞 0 评论 117 浏览 评分:0.0
整数的个数 摘要:解题思路:注意事项:参考代码:k = int(input())l = list(input().split())a=0b=0c=0for i in l: if i == '1':…… 题解列表 2024年07月29日 0 点赞 0 评论 79 浏览 评分: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 评论 139 浏览 评分:0.0
整数的个数 摘要:解题思路:注意事项:scanf_s改为scanf参考代码:int k,i; int a=0,b=0,c=0; int arr[1000]; scanf_s("%d",&k); for ( i = 0;…… 题解列表 2023年09月07日 0 点赞 0 评论 86 浏览 评分:0.0
整数的个数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,b=0,c=0,d=0,i; int a[100]; scanf("%…… 题解列表 2023年01月13日 0 点赞 0 评论 65 浏览 评分:0.0