fork download
  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. typedef struct {
  5. double a;
  6. double b;
  7. double c;
  8. } Triangle;
  9.  
  10. double calculateArea(Triangle t) {
  11. double s = (t.a + t.b + t.c) / 2;
  12. return sqrt(s * (s - t.a) * (s - t.b) * (s - t.c));
  13. }
  14.  
  15. int main(void) {
  16. Triangle t;
  17.  
  18. scanf("%lf", &t.a);
  19. scanf("%lf", &t.b);
  20. scanf("%lf", &t.c);
  21. printf("a:%lf,b:%lf,c:%lf\n",t.a,t.b,t.c);
  22.  
  23. if (t.a + t.b > t.c && t.b + t.c > t.a && t.c + t.a > t.b) {
  24. double area = calculateArea(t);
  25. printf("三角形の面積: %lf\n", area);
  26. } else {
  27. printf("入力された値では三角形を形成できません。\n");
  28. }
  29. return 0;
  30. }
Success #stdin #stdout 0s 5276KB
stdin
5
12
13
stdout
a:5.000000,b:12.000000,c:13.000000
三角形の面積: 30.000000