Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- n = int(input("empresa:"))
- m = int(input("mês:"))
- empresa = 1
- while empresa <= n:
- mes = 1
- balanca = 0
- print("Empresa {}".format(empresa))
- while mes<=m:
- print("Mês {}:".format(mes))
- ganho=int(input("ganho no mês: "))
- gasto=int(input("gasto no mês: "))
- balanca = balanca+(ganho-gasto)
- mes = mes+1
- if balanca == 0:
- print("A empresa ficou na mesma!")
- if balanca > 0:
- print("lucro: {}".format(balanca))
- else:
- print("perdeu: {}".format(balanca))
- empresa= empresa +1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement