Exemple #1
0
void ch8re8(void)
{
	box a = {"Kevin", 212,33,13};
	box b = {"Ben", 12,32,43};
	cal_vol(a);
	cal_vol(b);
	std::cout << larger(a,b);
}
Exemple #2
0
void main (void)
{
	int test_case[11] = [2,5,1,2,3,4,7,7,6];
	int volume;

	volume = cal_vol(test_case);
	printf("%d\n",volume);
}