Skip to content

Commit

Permalink
Update 2.derecedenPolinomÇözümü
Browse files Browse the repository at this point in the history
  • Loading branch information
kadirby authored Jan 16, 2017
1 parent 2ae3a5e commit 99e34b5
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions 2.derecedenPolinomÇözümü
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
x= int(input("[a*x^2 + b*x + c] polinomu için x Değerini Giriniz !"))
a= int(input("[a*x^2 + b*x + c] polinomu için a Değerini Giriniz !"))
b= int(input("[a*x^2 + b*x + c] polinomu için b Değerini Giriniz !"))
c= int(input("[a*x^2 + b*x + c] polinomu için c Değerini Giriniz !"))
a= int(input("[a^2 + b^2 + 3c] polinomu için a Değerini Giriniz !"))
b= int(input("[a^2 + b^2 + 3c] polinomu için b Değerini Giriniz !"))
c= int(input("[a^2 + b^2 + 3c] polinomu için c Değerini Giriniz !"))

sonuc = a*x*x+b*x+c
sonuc = a*a+b*b+3*c
print(sonuc)

0 comments on commit 99e34b5

Please sign in to comment.