int ThermoTemp=55
文字列として変換して格納する必要がある整数がありますchar Thermoprint[6]
私はちょうどそれが欲しい05.5,
ここに私が試したコードがあります
ThermoPrint[0]=((ThermoTemperature/100)+0x30);
ThermoPrint[1]=(((ThermoTemperature/10)%10)+0x30);
ThermoPrint[3]=((ThermoTemperature%10)+0x30);
ThermoPrint[2]='.';
ThermoPrint[4]=',';
これを行う効率的な方法はありますか?