Butterfly__qwq @ 2021-08-13 14:29:57
input(a)
input(b)
print(a*b)
by 求学的企鹅 @ 2021-08-13 14:38:59
a=int(input())
b=int(input())
print(a*b)
或
print(int(input())*int(input()))
by yuchenren @ 2021-08-13 14:39:11
666
Python 不会别瞎用,虽然不需要 int
但 input()
至少不是 void
的吧。
by huyifei323 @ 2021-08-13 14:39:23
input(a)
不是输入
a=int(input())
b=int(input())
print(a*b)
验证码23jb
祭
by Butterfly__qwq @ 2021-08-13 14:39:27
如过这样应该CE才对吧
by 求学的企鹅 @ 2021-08-13 14:41:41
@蝴蝶小队队长 ?
by Butterfly__qwq @ 2021-08-13 14:43:34
c++没学高精,python12月学完了。结果怎么3/4年就忘了?(手动滑稽)
by AmaZingFantasy @ 2021-08-13 14:46:26
@蝴蝶小队队长 使用ruby,代码如下:
a=gets.to_i
b=gets.to_i
puts a*b
不仅可以过P1303,还能过P1919,双倍经验。
by Butterfly__qwq @ 2021-08-13 14:48:25
@安湛丰 ruby没学过[scratch to python to cpp(之后我会学Java)]
by _l_l_l_l_l_ @ 2021-08-13 14:49:13
@蝴蝶小队队长 scratch??? hhh
by yuchenren @ 2021-08-13 14:50:52
@蝴蝶小队队长 Python 没有编译,错误会 RE