2 Temmuz 2011 Cumartesi, 17:09
2257
Girdiğimiz bir sayının herhangi bir kuvvetini nasıl alırız.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-9" />
<title>Bir Sayının Herhangi Bir Üssünü Almak</title>
</head>
<body>
<%
islem = Request.QueryString("islem")
If islem = "" Then
%>
<form method="post" action="?islem=hesapla" />
Taban : <input type="text" name="taban" />
<br />
Üs : <input type="text" name="us" />
<br />
<input type="submit" value="Hesapla" />
</form>
<%
ElseIf islem = "hesapla" Then
taban = Request.Form("taban")
us = Request.Form("us")
If IsNumeric(taban) AND IsNumeric(us) = True Then
sonuc = taban^us
Response.Write " "&taban&" sayısının "&us&". kuvveti : "&sonuc&""
Response.Write "<br /><a href=""?islem="">Yeni Hesap</a>"
Else
Response.Write "Sayısal değerler giriniz.<br />"
Response.Write "<a href=""?islem="">Yeni Hesap</a>"
End If
End If
%>
</body>
</html>