Submission #2308

# Submission time Handle Problem Language Result Execution time Memory
2308 2013-07-21T02:20:58 Z swh0329 개미 (GA4_ant) C++
Compilation error
0 ms 0 KB
#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;
}

Compilation message

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'