题解 | 牛牛的空格分隔
牛牛的空格分隔
https://www.nowcoder.com/practice/b2203c4a5c304536a7f577bc885de511
a = str(input())
b = int(input())
c = float(input())
c = f"{c:.6f}"
print(" ".join(map(str,[a,b,c])))
牛牛的空格分隔
https://www.nowcoder.com/practice/b2203c4a5c304536a7f577bc885de511
a = str(input())
b = int(input())
c = float(input())
c = f"{c:.6f}"
print(" ".join(map(str,[a,b,c])))
相关推荐