阅读以下程序,填写运行结果________________.def f1(m): s=0 for i in str(m): s+=int(i) return sdef f2(n): s=0 while n>0: s=s+1 n=n//10 return sprint(f1(123)//f2(123))
阅读以下程序,填写运行结果________________.def f1(m): s=0 for i in str(m): s+=int(i) return sdef f2(n): s=0 while n>0: s=s+1 n=n//10 return sprint(f1(123)//f2(123))
发布时间:2024-05-26 04:39:10