Cd

print(“üa = float(input("1. Sayıyı Giriniz :")) b = float(input("2. Sayıyı Giriniz :")) c = float(input("3. Sayıyı Giriniz :")) islem = int(input("TOPLAMA İŞLEMİ YAPMAK İÇİN => 1\nÇIKARMA İŞLEMİ YAPMAK İÇİN => 2\nÇARPMA İŞLEMİ YAPMAK İÇİN => 3\nBÖLME İŞLEMİ YAPMAK İÇİN =>4") if islem == 1: print(a + b + c) elif islem == 2: print(a - b - c) elif islem == 3: print(a * b * c) elif islem == 4: print(a / b / c)

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.