与指定数字相同的数的个数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m,i,b=0; int a[100]; scanf("%d%d",&…… 题解列表 2023年01月13日 0 点赞 0 评论 151 浏览 评分:2.0
2804: 与指定数字相同的数的个数 摘要:```cpp #include using namespace std; int main() { int n,m,a[101],s=0; cin>>n>>m; …… 题解列表 2023年01月10日 0 点赞 0 评论 301 浏览 评分:9.9
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
有错误请指出 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int N,M; scanf("%d %d",&N,&M); int a,i=1,c=0; w…… 题解列表 2022年12月20日 0 点赞 0 评论 359 浏览 评分:9.0
与指定数字相同的数 摘要:解题思路:一维数组的应用注意事项:参考代码:#include<stdio.h>int main(){ int i,N,m,n,b=0; scanf("%d %d",&N,&m); int a[N]; …… 题解列表 2022年11月12日 0 点赞 0 评论 239 浏览 评分:2.0