smertullus
Neues Mitglied
[FONT="]Hallo zusammen,
ich habe ein Problem beim rechnen innerhalb einer Funtion.
Und zwar, wenn ich 1/0.000000001 berechnen lasse, bekomme ich das Ergebnis 999999999.9999999 (anstatt 1000000000).
Wie lasse ich die Funktion gleich richtig rechnen, ohne dass das Ergebniss zum Schluß erst gerundet werden muß? Kann mir hierbei jemand helfen?
Vielen Dank im Voraus!
[/FONT]
ich habe ein Problem beim rechnen innerhalb einer Funtion.
Und zwar, wenn ich 1/0.000000001 berechnen lasse, bekomme ich das Ergebnis 999999999.9999999 (anstatt 1000000000).
Wie lasse ich die Funktion gleich richtig rechnen, ohne dass das Ergebniss zum Schluß erst gerundet werden muß? Kann mir hierbei jemand helfen?
Vielen Dank im Voraus!
[/FONT]
Code:
[FONT="]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Unbenannte Seite</title>
<script type="text/javascript">
<!--
[/FONT][FONT="]function Button1_onclick() {
document.Formular.Text1.value = 1/0.000000001;
//erwartet:1000000000 - Ergebnis: 999999999.9999999
}
//-->
</script>
</head>
<body>
<form name="Formular" action="">
<input id="Button1" type="button" value="button" onclick="return Button1_onclick()" />
<br />
<input id="Text1" type="text" />
</form>
</body>
</html>[/FONT]