返回列表 發帖

701 海龍公式

1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。

2. 設計說明:
請撰寫一程式,讓使用者輸入三個正整數,做為三角形邊長,再利用海龍公式計算並出輸出三角形面積至小數點後第二位。

提示:海龍公式
提示:
提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。

3. 輸入輸出:
輸入說明
三個正整數,為三角形邊長。

輸出說明
三角形面積

範例輸入
3
4
5

範例輸出
6.00

本帖隱藏的內容需要回復才可以瀏覽

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     int a,b,c;
  6.     cin>>a>>b>>c;
  7.     double s=(a+b+c)/2.0;
  8.     double A=sqrt(s*(s-a)*(s-b)*(s-c));
  9.     printf("%.2f",A);
  10.     return 0;
  11. }
複製代碼

TOP

  1. #include <bits/stdc++.h>

  2. using namespace std;
  3. int a,b,c;
  4. int main()
  5. {
  6.     cin>>a>>b>>c;
  7.     double s=(a+b+c)/2.0;
  8.     double A=sqrt(s*(s-a)*(s-b)*(s-c));
  9.     printf("%.2f\n",A);
  10.     return 0;
  11. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     int a,b,c;
  6.     cin>>a>>b>>c;
  7.     double s=(a+b+c)/2.0;
  8.     double A=sqrt(s*(s-a)*(s-b)*(s-c));
  9.     printf("%.2f\n",A);
  10. }
複製代碼

TOP

  1. #include <bits/stdc++.h>

  2. using namespace std;
  3. int a,b,c;
  4. int main()
  5. {
  6.     cin>>a>>b>>c;
  7.     double s=(a+b+c)/2.0;
  8.     double A=sqrt(s*(s-a)*(s-b)*(s-c));
  9.     printf("%.2f\n",A);
  10.     return 0;
  11. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int a,b,c;
  4. double s,A;
  5. int main()
  6. {
  7.     cin>>a>>b>>c;
  8.     s=(a+b+c)/2.0;
  9.     A=sqrt(s*(s-a)*(s-b)*(s-c));
  10.     printf("%.2f",A);
  11.     return 0;
  12. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5.     int a,b,c;
  6.     cin>>a>>b>>c;
  7.     double s=(a+b+c)/2;
  8.     double A=sqrt(s*(s-a)*(s-b)*(s-c));
  9.     printf("%.2f",A);

  10.     return 0;
  11. }
複製代碼

TOP

返回列表