hi!
ive compiled a program that gives me this error:
(88) : error C2296: '%' : illegal, left operand has type 'float'
(94) : error C2296: '%' : illegal, left operand has type 'float'
(100) : error C2296: '%' : illegal, left operand has type 'float'
thing is that i have all variables defined as float, and that shouldnt be a problem, right??
for (total_paquete1000 = 0; peso > 1000; total_paquete1000 ++)
{
if (dia == 7)
{
total_p_siguiente_prioritario_1000 += 1;
[B]costo_p_siguiente_prioritario_1000 = costo_p_siguiente_prioritario + (((peso - 1000)%500)*2);[/B]
cout << " Se le cobrarán: " << costo_p_siguiente_prioritario_1000 << " pesos";
}
else if (dia == 8)
{
total_p_siguiente_normal_1000 += 1;
[B]costo_p_siguiente_normal_1000 = costo_p_siguiente_normal + (((peso - 1000)%500)*2);[/B]
cout << " Se le cobrarán: " << costo_p_siguiente_normal_1000 << " pesos";
}
else if (dia == 9)
{
total_p_dos_dias_1000 += 1;
[B]costo_p_dos_dias_1000 = costo_p_dos_dias_1000 + (((peso - 1000)%500)*2);[/B] cout << " Se le cobrarán: " << costo_p_dos_dias_1000 << " pesos";
}
}