鱼C论坛

 找回密码
 立即注册
12
返回列表 发新帖
楼主: ooxx7788

[技术交流] Python: 每日一题 50

[复制链接]
发表于 2019-9-10 13:34:01 | 显示全部楼层
class Fighter:
          def __init__(self,name,health,attack):
                    self.name = name
                    self.health = health
                    self.damage_per_attack = attack
          def fight(self,Fb):
                    print(self.name+' attacks '+Fb.name)
                    Fb.health -= self.damage_per_attack
                    print(Fb.name+' now has %d health'%(Fb.health))
if __name__=='__main__':
          def declare_winner(fa,fb,name):
                    if fa.name == name:
                              fa.fight(fb)
                              while fa.health > 0 and fb.health > 0:
                                        fb.fight(fa)
                                        fa.fight(fb)
                    else:
                              fb.fight(fa)
                              while fa.health > 0 and fb.health > 0:
                                        fa.fight(fb)
                                        fb.fight(fa)
                    name = fa.name if fa.health > 0 else fb.name
                    print(name+' wins')
          declare_winner(Fighter("Lew", 10, 2), Fighter("Harry", 5, 4), "Lew")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-2-28 14:36:37 | 显示全部楼层
class Fighter():
    def __init__(self, name, health, dpa):
        self.name = name
        self.health = health
        self.dpa = dpa

    def attack(self, other):
        other.health -= self.dpa
        if other.health > 0:
            print('{a} attacks {b};{b}  now has {c} health.'.format(a=self.name, b=other.name, c=other.health))
        else:
            print('{a} attacks {b};{b}  now has {c} health and is dead.'.format(a=self.name, b=other.name, c=other.health))

# 递归实现互相攻击
def declare_winner(fighter_a, fighter_b, name):
    if fighter_a.health < 0:
        return print('{} wins'.format(fighter_b.name))
    elif fighter_b.health < 0:
        return print('{} wins'.format(fighter_a.name))

    if fighter_a.name == name:
        fighter_a.attack(fighter_b)
        declare_winner(fighter_a, fighter_b, fighter_b.name)
    else:
        fighter_b.attack(fighter_a)
        declare_winner(fighter_a, fighter_b, fighter_a.name)


declare_winner(Fighter("Lew", 10, 2), Fighter("Harry", 5, 4), "Harry")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-5-2 22:28:43 From FishC Mobile | 显示全部楼层
学习
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-5-20 09:51:36 | 显示全部楼层
1
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-9-17 20:49:47 | 显示全部楼层
666
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-4-20 21:26:43 | 显示全部楼层
1
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-16 01:44

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表