Neler yeni

Yeni mesajlar Yeni konular En çok mesaj En çok tepki En çok görüntülenen

Aspde bir sayının faktöriyelini almak

w@rriorhckr

🏅Acemi Tasarımcı🏅
Katılım
9 Şub 2009
Mesajlar
37
Tepkime puanı
1
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; " />
<title>Bir Sayının Faktöriyeli</title>
</head>
<body>
<%
islem = request.querystring("islem")
if islem = "" then
%>
<form method="post" action="?islem=hesapla" />
Sayı : <input type="text" name="sayi" />
<br>
<input type="submit" value="Hesapla" />
</form>
<%
elseif islem = "hesapla" then
sayi = request.form("sayi")
if sayi <> "" AND IsNumeric(sayi)=TRUE Then
baslangic = "1"
for i = 1 to sayi
baslangic = i*baslangic
next
response.write " "&sayi&" sayısının faktöriyeli : <b>"&baslangic&"</b><br><a href=""?islem="">Yeni Hesap</a> "
else
Response.write "Sayısal bir ifade giriniz.<br><a href=""?islem="">Yeni Hesap</a>"
end if
end if
%>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; " />
<title>Bir Sayının Faktöriyeli</title>
</head>
<body>
<%
islem = request.querystring("islem")
if islem = "" then
%>
<form method="post" action="?islem=hesapla" />
Sayı : <input type="text" name="sayi" />
<br>
<input type="submit" value="Hesapla" />
</form>
<%
elseif islem = "hesapla" then
sayi = request.form("sayi")
if sayi <> "" AND IsNumeric(sayi)=TRUE Then
baslangic = "1"
for i = 1 to sayi
baslangic = i*baslangic
next
response.write " "&sayi&" sayısının faktöriyeli : <b>"&baslangic&"</b><br><a href=""?islem="">Yeni Hesap</a> "
else
Response.write "Sayısal bir ifade giriniz.<br><a href=""?islem="">Yeni Hesap</a>"
end if
end if
%>

EMEĞE SAYGI +RAP
:emo1::emo1::emo1::emo1::emo1:
 

Benzer konular

KaLimero

🌱Yeni Üye🌱
Katılım
6 Ağu 2008
Mesajlar
14
Tepkime puanı
0
asp de bu kdr uzatmaya gerek yok aslında visual studio da kullanılan kodlar sadece bu kdar

--------------------------------------------------------------------
<script language=”vb” runat=”server”>
dim i , a, faktor as byte
sub page_load ()
faktor=1
a=inputbox(“sayi gir”)
for i =1 to a
faktor=faktor*i
next
response.write(fak)
</script>

html xmlns="https://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>

</div>
</form>
</body>
</html>
 
Üst