ates_bey Posted March 1, 2011 Share Posted March 1, 2011 [code] <?php if(isset($_GET["islem"])) { $sayi1 = $_GET["sayi1"]; $sayi2 = $_GET["sayi2"]; $islem = $_GET["islem"]; $sonuc = 0; switch ($islem) { case "topla": $sonuc = $sayi1+$sayi2; break; case "cikar": $sonuc = $sayi1-$sayi2; break; case "carp": $sonuc = $sayi1*$sayi2; break; case "bol": $sonuc = $sayi1/$sayi2; } } ?> <html> <head> <title>Hesap Makinesi</title> </head> <body> <?php if(isset($_GET["islem"])){ ?> <h1>Sonuç:<?php echo $sonuc; ?></h1> <?php } ?> <form action="" method="get" > <fieldset style="display:inline;"> <legend>Hesap Makinesi</legend> Sayı1:<br/><input type="text" name="sayi1" id="sayi1" value="" /><br/> Sayı2:<br/><input type="text" name="sayi2" id="sayi2" value="" /><br/> <select name="islem"> <option value="topla">Topla</option> <option value="cikar">Çıkar</option> <option value="carp">Çarp</option> <option value="bol">Böl</option> </select><br/> <input type="submit" value="Hesapla" /> </fieldset> </form> </body> </html> [/code] Ben bu hesap makinesine "cos,sin gibi hesaplamaları eklemek istiyorum..! " Ek olarak bunların dışında şöyle yapmam lazım girilen 1.sayının %30 unu 2.sayının ise %70 ini alacagım ve çıkan sonucu toplatacağım. Yardımcı olabilecek arkadaş varmı ? Quote Link to comment Share on other sites More sharing options...
FarukKatırcı Posted March 1, 2011 Share Posted March 1, 2011 kardes 1.sayı %30 almak için sayıyı 0.3 ile çarp 2. sayı almak için %70 için 0.7 ile çarp olucaktır Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.