第14271题 单选题
运行给定Python类相关代码,输出结果为?
class A():
    def __init__(self, x):
        self.x = x + 1
    def b(self):
        return self.x * self.x

t = A(3)
print(t.b())
A

9

B

12

C

7

D

16

程序运行统计
暂无判题统计