全部评论 4

  • 错了

    6天前 来自 山东

    0
  • n = int(input())
    x = list(map(int, input().split()))
    stack = []
    for num in x:
    stack.append(num)
    while stack:
    size = len(stack)
    top_val = stack.pop()
    print(f"=stk.size[{size}]==")
    print(f" stk.pop[{top_val}]")

    1周前 来自 江苏

    0
  • n = int(input())
    x = list(map(int, input().split()))
    stack = []
    for num in x:
    stack.append(num)
    while stack:
    size = len(stack)
    top_val = stack.pop()
    print(f"=stk.size[{size}]==")
    print(f" stk.pop[{top_val}]")

    1周前 来自 江苏

    0
  • 怎么了

    1周前 来自 江苏

    0
暂无数据

提交答案之后,这里将显示提交结果~

首页