#A apple=list(map(int,input().split())) height=int(input())+30 count=0 for i in apple: if height>=i: count+=1 print(count) #B L,M=map(int,(input().split())) count=0 lst=[1 for i in range(L+1)] for j in range(M): a,b=map(int,input().split()) for k in range(a,b+1): lst[k]=0 for each in range(L+1): if lst[each]==1: count+=1 print(count) #C num=int(input()) lst=list(map(int,input().split())) lst=list(set(lst)) lst.sort() print(len(lst)) for i in lst: print(i,end=" ") #D import math a,b,c=map(int,input().split()) num=b**2-4*(a*c) x1=(-b+math.sqrt(num))/2*a x2=(-b-math.sqrt(num))/2*a print("%.2f %.2f"%(x1,x2)) #E alp=input() b=[] for i in alp: if i.isalpha(): b.append(i) for i in b: print(i,end="") #F #G N=int(input()) def prime(n): if n < 2: pass else: for i in range(2, n): if n % i == 0: break else: print(n) for i in range(N+1): prime(i) #H N=int(input()) s=100 t=200 if N==1: s=100 else: while N>1: t=t/2 s=s+t N-=1 print("%.4f"%s) #I #j try: while 1: a,b=map(int,input().split()) print(a+b) except EOFError: pass
0.0分
4 人评分
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:725 |
C语言训练-委派任务* (C语言代码)..................竟然是第一个浏览:2214 |
校门外的树 (C语言代码)浏览:1166 |
简单的a+b (C语言代码)浏览:685 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:561 |
【回文数(二)】 (C语言代码)浏览:800 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:702 |
C语言程序设计教程(第三版)课后习题7.1 (C语言代码)浏览:539 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:350 |
企业奖金发放 (C语言代码)浏览:2462 |