Last active
September 25, 2015 05:58
-
-
Save austa/874564 to your computer and use it in GitHub Desktop.
This file contains 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
print"Merhaba, Hoşgeldiniz" | |
print"Programın Amacı:İkinci Dereceden İki Bilinmeyenli Denklemin Köklerini Bulan Program" | |
a=input("x**2 li terimin baş katsayısını giriniz:") | |
b=input("x li terimin baş katsayısını giriniz:") | |
c=input("sabit sayıyı giriniz:") | |
d=b**2-(4*a*c) | |
if d>0: | |
x1=(-b+d**0.5)/2*a | |
x2=(-b-d**0.5)/2*a | |
print"Denklemin Kökleri",x1,"ve",x2,"dir." | |
elif d==0: | |
print"Çift katlı kökü vardır." | |
else: | |
print"Kökü yoktur" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment