제출 #2308

#제출 시각아이디문제언어결과실행 시간메모리
2308swh0329개미 (GA4_ant)C++98
컴파일 에러
0 ms0 KiB
#include <iostream>
#include <stdio.h>
#define Min(x,y) x<y?x:y
using namespace std;
int main()
{
    int i, j, t;
    double a, b, c, s, aa, bb, cc, m;
    s=0;
    scanf("%d", &t);
    while(t>0)
    {
        t--;
        m=999999;
        cin >> a >> b >> c;
        aa=a/2;
        bb=b/2;
        cc=c/2;
        m=a*a*b*b*c*c/2
        //m=Min(m, a*a+2*bb*bb+c*c);
        //m=Min(m, aa*aa*2+b*b+c*c);
        //m=Min(m, a*a+b*b+cc*cc*2);
        cout << m << endl;
    }
    return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

ant.cpp: In function 'int main()':
ant.cpp:23: error: expected `;' before 'cout'
ant.cpp:7: warning: unused variable 'i'
ant.cpp:7: warning: unused variable 'j'