Für dieses Forum muß Javascript im Browser aktiviert werden!
Kommentar: Einfügen von HTML im Kommentar: Link einfügen: <a href="LINKURL" target="_blank">LINKTITEL</a> Bild einfügen: <img src="BILDURL"> Text formatieren: <b>fetter Text</b> <i>kursiver Text</i> <u>unterstrichener Text</u> Kombinationen sind auch möglich z.B.: <b><i>fetter & kursiver Text</i></b> C2 Quellcode formatieren: <code>Quellcode</code> ASM Quellcode formatieren: <asm>Quellcode</asm> (Innerhalb eines Quellcodeabschnitts ist kein html möglich.) Wichtig: Bitte mache Zeilenumbrüche, bevor Du am rechten Rand des Eingabefeldes ankommst ! > Hallo Christian und nitraM > viele Wege führen nach Rom, Ich wende folgende Lösung an: > > thread temp { > float temp; > string s; > > temp = 12345; > temp = temp/100; > s=""; > str.putfloatf(s,temp,2); > s=s+" °C"; > hwcom.print(s); > > temp = -1234; > temp = temp/100; > s=""; > str.putfloatf(s,temp,2); > s=s+" °C"; > hwcom.print(s); > > sleep 5000; > > } > > Gruß Rolf > > > > Hallo Christian > > ich würd es so machen: > > > > > > <code> > > > > function Temp_ausgabe(int temp) > > {if temp < 0 > > {hwcom.print("-"); > > } > > temp = math.abs(temp); // Betrag bilden (Wert ist ab jetzt immer positiv) > > if temp < 1000 // eine Null voranstellen? 1000=>10,00 999=>09,99 > > {hwcom.print("0"); > > } > > hwcom.num(temp / 100); // Vorkommawert > > hwcom.print(","); > > temp = temp % 100; > > if temp < 10 // eine Null voranstellen? > > {hwcom.print("0"); > > } > > hwcom.num(temp); // Nachkommawert > > > > hwcom.print("°C"); > > hwcom.ret(); > > .... > > } > > > > </code> > > nitraM