题解 | #网页的生成#
网页的生成
https://www.nowcoder.com/practice/eafb4afa3d504fcaadf313bdd4b90148
def doubleHeight(h): return h * 2 heightlist = list(map(int,input().split())) for height in heightlist: print(doubleHeight(height))
网页的生成
https://www.nowcoder.com/practice/eafb4afa3d504fcaadf313bdd4b90148
def doubleHeight(h): return h * 2 heightlist = list(map(int,input().split())) for height in heightlist: print(doubleHeight(height))
相关推荐