Home Help & Support Search Tips Options: Case:



   Need A Tutor?    |   Need Homework Help?                                                                             Help and Support     | Join or Cancel

Exam  1     2     3     4     5     6     7    8     9    10     Midterm   1    2     Final Exam  1   2
Graded Program Assignment   
1   2    3    4    5    6    7    8    9           Python Compiler

Computer Programming
Assignment 2
Miles Payroll


Assignment #2 Part 1 – Miles

#======================================================================================
# PROGRAMMER:       Type your first and last name here
# PROGRAM NAME:     Assignment #02 - Pay Roll
# DATE WRITTEN:     Enter the current date
# PURPOSE:          Use assignment statements to calculate gross Pay of an employee
#
#======================================================================================
# INITIALIZE / DECLARE VARIABLES
grossPay = 0.00;
 
#======================================================================================
# INPUT STATEMENTS
milesDriven =  float(input(" How many miles did you " + "drive? "));
gasConsumed = float(input(" How many gallons of gas did you " + "consume? "));
 
#======================================================================================
# PROCESSING / CALCULATIONS
milesPgallon = milesDriven / gasConsumed;
#======================================================================================
# OUTPUT STATEMENTS
"CAR MILEAGE INFORMATION"
#======================================================================================
print("=" * 45);
print(" Miles Driven = " + format(milesDriven, "9,.2f"));
print(" Gallons Of Gas Consumed = " + format(gasConsumed,"9,.2f"));
print(" Miles Per Gallon = " + format(milesPgallon,"9,.2f"));
print("=" * 45);
 
#======================================================================================
# END PROGRAM


Assignment #2 Part 2 – Payroll

#==================================================================================
# PROGRAMMER:       Type your first and last name here
# PROGRAM NAME:     Assignment #02 - Pay Roll
# DATE WRITTEN:     Enter the current date
# PURPOSE:          Use assignment statements to calculate gross Pay of an employee
#
#==================================================================================
# INITIALIZE / DECLARE VARIABLES
grossPay = 0.00;
 
#==================================================================================
# INPUT STATEMENTS
employeeName = input("Enter the employee's Full Name: ");
hoursWorked =  float(input("How many hours did " + employeeName + " work? "));
payRate = float(input("What is the rate of pay for " + employeeName + "? "));
 
#==================================================================================
# PROCESSING / CALCULATIONS
grossPay = hoursWorked * payRate;
 
#==================================================================================
# OUTPUT STATEMENTS
print("=" * 45);
print("PAYROLL INFORMATION FOR: " + employeeName);
print("=" * 45);
print("Hours Worked =   " + format(hoursWorked, "9,.2f"));
print(" Rate of Pay = $ " + format(payRate, "9,.2f"));
print(" Gross Pay   = $ " + format(grossPay,"9,.2f"));
print("=" * 45);
 
#==================================================================================
# END PROGRAM


Exam  1     2     3     4     5     6     7    8     9    10     Midterm   1    2     Final Exam  1   2
Graded Program Assignment   
1   2    3    4    5    6    7    8    9           Python Compiler


Home
Accounting & Finance Business
Computer Science General Studies Math Sciences
Civics Exam
Everything Else
Help & Support
Join/Cancel
Contact Us
 Login / Log Out