跟踪谱线时,能否将载物台(游标盘)与望远镜同时转动?( )
A. 能
B. 不能
C. 都可以
D. 以上答案都不对
查看答案
以下哪些方法可以用来测量三棱镜的折射率?( )
A. 各半调节法
B. 掠入射法
C. 最小偏向角法
D. 累积放大法
最小偏向角法计算三棱镜折射率需要知道( )
A. 最小偏向角
B. 掠入射角
C. 三棱镜顶角
D. 出射光的折射角
请补充下列程序(硬币找零问题):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)