Santigrat dereceyi fahrenayt dereceye çevirmeden önce formülü bir hatırlayalım.
Santigrat dereceyi Fahrenhayt dereceye çevirmek için aşağıdaki formül kullanılır:
°F = °C x 9/5 + 32
Derece fahrenait dönüşümü
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
<!DOCTYPE html> <html lang="tr"> <head> <meta charset="UTF-8"> <title>AlgoritmaOrnekleri.com</title> </head> <body> <form action="" method="post"> Santigrat Derece Girin: <input type="text" name="sayi"><br> <input type="submit" name="hesapla" value="Fahrenayt Hesapla"> </form> <?php if(isset($_POST["hesapla"])) { $deg=$_POST["sayi"]; $fah = $deg * 1.8 + 32; echo "<h1>Fahrenayt Derecesi:$fah</h1>"; } ?> </body> </html> |
Çıktı:
Add Comment