pycode


私信TA

用户名:pycode

访问量:41812

签 名:

编程菜鸟

等  级
排  名 139
经  验 7424
参赛次数 0
文章发表 59
年  龄 0
在职情况 学生
学  校 Hzu
专  业 软件工程

  自我简介:

编程菜鸟

 

0.0分

5 人评分

  评论区

import math
a, b, c = map(int, input().split())
s = (a + b + c) / 2
print("{:.3f}".format
Area=math.sqrt(s * (s - a) * (s - b) * (s - c))
print(Area)
为什么这么写不对 求大佬指导
2021-10-18 19:41:24
import math
a, b, c = map(int, input().split())
s = (a + b + c) / 2
print("{:.3f}".format(math.sqrt(s * (s - a) * (s - b) * (s - c))))
2021-01-31 17:27:05
  • «
  • 1
  • »