This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #{Encoding:UTF-8} | |
| puts "Sıcaklık değerini giriniz : " | |
| t = gets.chomp.to_i | |
| if t<0 | |
| puts "katı" | |
| elsif t<100 | |
| puts "sıvı" | |
| else | |
| puts "gaz" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #=> ={Encoding: UTF-8} | |
| puts "Notları Hesapla \n" | |
| puts "1.Arasınav Notunu Giriniz : " | |
| as1 = gets.chomp.to_i | |
| puts "2.Arasınav Notunuzu Giriniz : " | |
| as2 = gets.chomp.to_i | |
| puts "Final Notunuzu Giriniz : " | |
| fin = gets.chomp.to_i | |
| ort =as1*0.15 + as2*0.20 + fin*0.65 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #=> ={Encoding: UTF-8} | |
| puts "Notları Hesapla \n" | |
| puts "1.Arasınav Notunu Giriniz : " | |
| as1 = gets.chomp.to_i | |
| puts "2.Arasınav Notunuzu Giriniz : " | |
| as2 = gets.chomp.to_i | |
| puts "Final Notunuzu Giriniz : " | |
| fin = gets.chomp.to_i | |
| ort =as1*0.15 + as2*0.20 + fin*0.65 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #=> ={Encoding: UTF-8} | |
| puts "Vize-Fİnal Hesaplama" | |
| puts "Vize Notunu Giriniz : " | |
| viz = gets.chomp.to_i | |
| puts "Final Notunuzu Giriniz : " | |
| fin = gets.chomp.to_i | |
| ort =viz*0.4 + fin*0.6 | |
| puts "Dönem sonu ortalamanız : #{ort}" |
NewerOlder