Asp de Matematiksel İşlemler
|| HAYATTA HER ŞEYİ PAYLAŞAN BİR PLATFORM || TÜRKİYENİN YÜKSELEN YILDIZI || HAYAT BURDA || :: Web Programlama
1 sayfadaki 1 sayfası
Asp de Matematiksel İşlemler
toplama çıkarma bölme çarpma
<form action="a.asp" method="post">
<input type="text" name="sayi1" size="3">
<select name=op>
<option value="1"> +</option>
<option value="2"> - </option>
<option value="3"> * </option>
<option value="4"> /</option>
</select>
<input type="text" name="sayi2" size="3">
<input type=submit value="hesapla" >
</form>
<br>
<%
dim sayi1,sayi2,toplam,cikart,bol,carp
sayi1=INT(Request.form("sayi1"))' Matematiksel Bir işlem yapacağımızı bellirttik INT = Tamsayı
sayi2=INT(Request.form("sayi2"))
op=INT(Request.form("op"))
if op="1" then
toplam=sayi1+Sayi2
Response.write toplam &"<br>"
end if
if op="2" then
cikart=sayi1-sayi2
response.write cikart &"<br>"
end if
if op="3" then
carp=sayi1*sayi2
response.write carp &"<br>"
end if
if op="4" then
bol=sayi1/sayi2
response.write bol &"<br>"
end if
%>
<form action="a.asp" method="post">
<input type="text" name="sayi1" size="3">
<select name=op>
<option value="1"> +</option>
<option value="2"> - </option>
<option value="3"> * </option>
<option value="4"> /</option>
</select>
<input type="text" name="sayi2" size="3">
<input type=submit value="hesapla" >
</form>
<br>
<%
dim sayi1,sayi2,toplam,cikart,bol,carp
sayi1=INT(Request.form("sayi1"))' Matematiksel Bir işlem yapacağımızı bellirttik INT = Tamsayı
sayi2=INT(Request.form("sayi2"))
op=INT(Request.form("op"))
if op="1" then
toplam=sayi1+Sayi2
Response.write toplam &"<br>"
end if
if op="2" then
cikart=sayi1-sayi2
response.write cikart &"<br>"
end if
if op="3" then
carp=sayi1*sayi2
response.write carp &"<br>"
end if
if op="4" then
bol=sayi1/sayi2
response.write bol &"<br>"
end if
%>
geceninmavisi- *** FORUM KRAL ÜYE ***
-
Mesaj Sayısı : 160
Yaş : 42
Kayıt tarihi : 07/08/08
|| HAYATTA HER ŞEYİ PAYLAŞAN BİR PLATFORM || TÜRKİYENİN YÜKSELEN YILDIZI || HAYAT BURDA || :: Web Programlama
1 sayfadaki 1 sayfası
Bu forumun müsaadesi var:
Bu forumdaki mesajlara cevap veremezsiniz