Java Kalori Hesaplama

  • Konbuyu başlatan Konbuyu başlatan Z1rT
  • Başlangıç tarihi Başlangıç tarihi
9
EXE RANK

Z1rT

Fexe Kullanıcısı
Puanları 0
Çözümler 0
Katılım
26 Kas 2009
Mesajlar
9,190
Tepkime puanı
0
Puanları
0
Yaş
33
Web sitesi
www.netbilgini.net
Z1rT
PHP:
 <SCRIPT LANGUAGE="JavaScript">

<!--
var myWeight;
var myDistance;

function HowMany(form)
{
var difference;
difference = (myDistance * myWeight) * .653;
form.Fdiff.value = difference;

if (difference < 100) {
form.comment.value="Berbat.. Bir daha ki sefere daha iyisini yapmalısın!";
}
if (difference > 101 && difference < 200) {
form.comment.value="İyi koşu, fakat daha iyisini yapabilirsin.";
}
if (difference > 201 && difference < 300) {
form.comment.value="Çok iyi! Bir dahaki sefere 300 yapmaya çalış.";
}
if (difference > 301 && difference < 500) {
form.comment.value="Harika! Çok iyi koşucusun... performansını koru!";
}
if (difference > 501 && difference < 700) {
form.comment.value="Bill Rogers'ın performansının bile üstündesin!";
}
if (difference > 701) {
form.comment.value="Kahramanım! Büyük bir yaş pastayı hakettin."; 
}

}

function SetMyWeight(weight)
{
myWeight = weight.value;
}

function SetmyDistance(dis)
{
myDistance = dis.value;
}

function ClearForm(form){

form.myWeight.value = "";
form.myDistance.value = "";
form.Fdiff.value = "";
form.comment.value = "";

}
// -->

</SCRIPT>
<center>
<FORM METHOD="POST">
<TABLE border=3>
<TR>
<TR>
<TD><div align=center>Kilonuz<br></div></TD>
<TD><div align=center>Koştuğunuz<br>Mil</div></TD>
<TD><div align=center>Yaktığınız<br>Kalori</div></TD>
<TD><INPUT TYPE=BUTTON ONCLICK="HowMany(this.form)" VALUE="Hesapla"></TD>
</TR>
<tr>
<TD><div align=center><INPUT TYPE=text NAME=myWeight SIZE="4"ONCHANGE="SetMyWeight(this)"></div></TD>
<TD><div align=center><INPUT TYPE=text NAME=myDistance SIZE="4"ONCHANGE="SetmyDistance(this)"></div></TD>
<TD><div align=center><INPUT TYPE=text NAME="Fdiff" VALUE="" SIZE="6"></div></TD>
<TD><div align=center><INPUT TYPE=BUTTON VALUE=" Reset " onClick="ClearForm(this.form)"></div></tr>
</table>
<table border=3>
<tr>
<TD><DIV ALIGN=CENTER>Yorum</DIV></TD>
<TD><INPUT TYPE=text NAME="comment" size="37"></td>
</TR>
</TABLE>
</FORM>
</center>
 
Geri
Üst