与指定数字相同的数的个数 摘要:解题思路:注意事项:参考代码:s=0a=list(map(int,input().split()))b=list(map(int,input().split()))for i in b: if …… 题解列表 2024年03月17日 0 点赞 0 评论 99 浏览 评分:0.0
C语言数组问题-遍历整个数组-时间复杂度O2 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int arr[100]={0}; int n,i; int cnt,count…… 题解列表 2022年12月21日 0 点赞 0 评论 119 浏览 评分:0.0
题解 2804: 与指定数字相同的数的个数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b[100],c,sum = 0; scan…… 题解列表 2025年01月25日 0 点赞 0 评论 17 浏览 评分:0.0
2804: 与指定数字相同的数的个数 摘要:``` #include using namespace std; int main(){ int x,k,n,x1=0; cin>>k>>x; for(int i=1; i>n; …… 题解列表 2023年11月05日 0 点赞 0 评论 93 浏览 评分:0.0
2804: 与指定数字相同的数的个数 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;typedef long long ll;const ll N=1001;ll a[N];i…… 题解列表 2024年04月14日 0 点赞 0 评论 147 浏览 评分:0.0