共3行第一行,一个整数,表示n(1 <= n <= 100)。第二行,共输入n个整数,两个整数之间用空格分隔。第三行,输入一个整数,表示要查找的整数x。
一行,表示整数x出现的次数。
5 1 1 2 1 3 1
3
n = int(input()) arr = list(map(int,input().split())) m = int(input()) print(arr.count(m)) def counts(arr,tage): counts = 0 for i in arr: if i == tage: counts += 1 return counts
n = int(input()) a = list(map(int,input().split())) b = int(input()) print(a.count(b))
n = int(input()) ln = list(map(int, input().split())) x = int(input()) print(ln.count(x))
这道题你会答吗?花几分钟告诉大家答案吧!
扫描二维码,关注牛客网
下载牛客APP,随时随地刷题