Run ID:91716
提交时间:2024-09-22 13:49:46
a=float(5) c=float(8) b=float(12) v=float(5) a='{:.3f}'.format((a+c+b)/3) n=39/v m=39/c t=39/b j=39-n*5 h=39-m*8 t2=39-t*12 print(a) print(n,' ',j) print(m,' ',h) print(t,' ',t2)