题解 2803: 整数的个数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2803: 整数的个数

摘要:解题思路:注意事项:参考代码:n=int(input())a=list(map(int,input().split()))print(a.count(1))print(a.count(5))print……

2803: 整数的个数

摘要:解题思路:注意事项:参考代码:a1 = a5 = a10 = 0k = int(input())l = list(map(int,input().split()))for i in l:    if ……

整数的个数

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int k,a,i;/*b为1出现的次数*/ int b=0; int c=0; int  d=0; scan……

整数的个数

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){      int n,b=0,c=0,d=0,i;      int a[100];      scanf("%……

有错误请指出

摘要:解题思路:switch  选择注意事项:参考代码:#include <stdio.h>int main(){   int a,b=0,c=0,d=0,n;   scanf("%d",&n);   in……

c语言 小白也能看懂

摘要:解题思路:分别设置1,5,10的计数器,每输入一个数,判断是否是1、5、10,如果是,相应的计数器加一注意事项:无参考代码:#include<stdio.h>int main(){    int k,……