Python Kod İsteği
-
a= input("urun toplami:")
b= input ("urun adet_LT:")
c= input ("iskonto:")
d= input ("kadeve dus:")
print toplam_TL
% "yüzdeleri" almadım
-
matematiksel işlemler için önce integera çevir
int(input("urun toplamı"))
-
BlackApple bunu yazdı
matematiksel işlemler için önce integera çevir
int(input("urun toplamı"))
ok
a= int(input("urun toplami:"))
b= int(input("urun adet LT:"))
c= int(input("iskonto:"))
d= int(input("kadeve dus:"))
f = a*b
x = f-c
g = x-d
print g
------
f den "c" ye girilen oranı düşüp kalanı "x" atayıp , "x" den de "d" ye girileni düşüp sonucu yazmam gerekir . ? % almayı beceremiyorum
ran tarafından 19/Tem/15 19:37 tarihinde düzenlenmiştir -
doğru mu anladım
a= int(input("urun toplami:")) b= int(input("urun adet LT:")) c= int(input("iskonto:")) d= int(input("kadeve dus:")) f = (a*b) - (a*b*c/100) g = f - (f*d/100) print(g)
BlackApple tarafından 19/Tem/15 19:43 tarihinde düzenlenmiştir -
BlackApple bunu yazdı
doğru mu anladım
a= int(input("urun toplami:")) b= int(input("urun adet LT:")) c= int(input("iskonto:")) d= int(input("kadeve dus:")) f = (a*b) - (a*b*c/100) g = f - (f*d/100) print(g)BlackApple
Eline Sağlık, Çok Teşekkür ederim.
