# TODO def compute(a, x, y): for i in range(1, y+1): for j in range(1, x+1): print(a, end=' ') print() a = input() x = eval(input()) y = eval(input()) compute(a, x, y)
Category: Python
全新的繁體中文 WordPress 網站
# TODO def compute(a, x, y): for i in range(1, y+1): for j in range(1, x+1): print(a, end=' ') print() a = input() x = eval(input()) y = eval(input()) compute(a, x, y)