#27892: 點進來保證對


s010558@student.cysh.cy.edu.tw (朱予翔)

學校 : 國立嘉義高級中學
編號 : 162188
來源 : [140.114.13.84]
最後登入時間 :
2022-07-24 09:10:50
d478. 共同的數 - 簡易版 | From: [163.27.3.89] | 發表日期 : 2021-11-04 13:57

 #include <bits/stdc++.h>

using namespace std;


int main()
{

    int a,b,c,s;
     while(cin>>a>>b>>c)
    {

       s=(a+b+c)/2;
      cout<<(s*(s-a)*(s-b)*(s-c))<<endl;

    }


    return 0;
}
 
ZeroJudge Forum