林惜城


私信TA

用户名:reminder

访问量:31321

签 名:

等  级
排  名 91
经  验 9074
参赛次数 0
文章发表 95
年  龄 0
在职情况 学生
学  校 西安电子科技大学
专  业

  自我简介:

哈姆


解题思路:

还是正常的宏定义流程,记得带上所需的头文件。


注意事项:

理论上s应该定义成float型,因为可能是小数,如果输入6 7 8的话s就会算成10了,但这么写还是通过了,说明这题的check point不太合理。


参考代码:

#include <iostream>
#include <cmath>
#include <iomanip>

#define S(a, b, c) (a + b + c) / 2
#define AREA(S, a, b, c) sqrt((S * (S - a) * (S - b) * (S - c)))

using namespace std;

int main() {
	int a = 0;
	int b = 0;
	int c = 0;
	cin >> a >> b >> c;
	int s = S(a, b, c);
	float area = AREA(s, a, b, c);
	cout << fixed << setprecision(3) << area << endl;
	return 0;
}


 

0.0分

2 人评分

  评论区

  • «
  • »