#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'