Listing 02-02: Salary increase calculation

##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 02\02.02 - Salary increase calculation.py
# Description: Salary increase calculation
##############################################################################

salary = 1500
increase = 5
print(salary + (salary * increase/100))
Click here to download the file