Python ile kullanıcının girdiği sayının mükemmel sayı olup olmadığını bulan örneğe ait kodlar:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
sayi = int(input("Sayi Giriniz:")) toplam=0 for i in range(1,sayi): if(sayi%i == 0): toplam +=i if(sayi == toplam): print("Mükemmel Sayidir.") else: print("Mükemmel Sayi Degildir") |
Add Comment