题目内容

请补充下列程序(硬币找零问题):def get_min_coins(amount_rem):coin_combinations = [1,5,10,25,100]coin_list = []sorted_coin_combinations = sorted(coin_combinations,reverse=True)for coin_val in sorted_coin_combinations:coin_count =if coin_count > 0:coin_list.append()amount_rem -=if amount_rem <= 0.0:breakreturn coin_listget_min_coins(36)

查看答案
更多问题

补充下列程序(间隔任务规划):conference_list = [['e',8,10],['b',2,5],['c',4,7],['a',1,3],['d',6,9]]def get_max_schedule(con_list):con_schedule = []num_con = len(con_list)con_list.sort(key=lambda x:x[2])for n in :if not con_schedule:con_schedule.append()else:if :con_schedule.append()return con_scheduleget_max_schedule(conference_list)

套管式换热器结构简单,适用于高温、高压的场合。

A. 对
B. 错

提取病原体中有效免疫原制成的抗原称为()

A. 灭活疫苗
B. 合成肽疫苗
C. 给合疫苗
D. 亚单位疫苗
E. 重组抗原疫苗

有关活疫苗的特点哪项是错误的?()

A. 接种量少
B. 接种次数少
C. 易保存
D. 免疫效果好
E. 有效免疫力维持时间长

答案查题题库