29/06/2021 09:27
Você pode fazer dessa forma:
Apenas uma forma de usar.
Código PHP:
#define Gasolina 1
#define Etanol 2
#define Diesel 3
#define Gas 4
TCombustivel[vehicleid][TiposC] = Gasolina
TCombustivel[vehicleid][TiposC] = Etanol
TCombustivel[vehicleid][TiposC] = Diesel
TCombustivel[vehicleid][TiposC] = Gas
function getFuel(vehicleid)
{
new Combustivel[10];
switch(TCombustivel[vehicleid][TiposC]
{
case Gasolina: { Combustivel = Gasolina }
case Etanol: { Combustivel = Etanol }
case Diesel: { Combustivel = Diesel }
case Gas: { Combustivel = Gas }
}
return Combustivel;
}
printf("Veiculo %d esta usando %s.", vehicleid, getFuel(vehicleid));
Apenas uma forma de usar.