Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
6
Posts with Downvotes
3
Downvoting Members
3
0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
Member Avatar for Fernando_1

http://pastebin.com/4eCJUP8d The comment "zipCode, city and state variables are of type string, declare them to be lists if you want to use the append() method on them. Do not use where which is a reserved word in Python. I don't see a loop in the readRecord() method that iterates through …

Member Avatar for vegaseat
-2
79
Member Avatar for Fernando_1

the names and course and grade dont print, just the totals [Click Here](http://pastebin.com/BNz8VX3T) it reads a file text file [Click Here](http://pastebin.com/a2VjXjwz) the output should look like [Click Here](http://pastebin.com/Lt9uchM9) Im barely learning how to use the control break method and most of the program is broken up in functions. Im not …

Member Avatar for woooee
0
311
Member Avatar for Fernando_1
Member Avatar for Fernando_1

# VARIABLE DEFINITIONS name="" adress="" city="" state="" zipcode="" course1="" course2="" course3="" course4="" course5="" #----------------------------------------------------------------------- # CONSTANT DEFINITIONS courses= "Enter courses name (Type 'STOP' when finished) :" pointsR = "\tEnter points received ( Type '9999' when finished) :" pointsP = "\tEnter points possible for this assignment :" #----------------------------------------------------------------------- # FUNCTION DEFINITIONS …

Member Avatar for woooee
0
177
Member Avatar for Fernando_1

System.out.printf("\nRegular pay:$ %.2f",regularPay) System.out.printf("\nOvertime pay:$ %.2f",overtimePay) System.out.printf("\nTotal Pay:$ %.2f",overtimePay+regularPay); to print like /Regular Pay: $ Overtime Pay: $ ///Total Pay: $ ignore the '/'

Member Avatar for bguild
0
168
Member Avatar for Fernando_1

# Purpose: Tax input amount # #----------------------------------------------------------------------- # VARIABLE DEFINITIONS salesAmount= 0.0 salesTax=0.0 total=0.0 #----------------------------------------------------------------------- # CONSTANT DEFINITIONS #----------------------------------------------------------------------- # FUNCTION DEFINITIONS #----------------------------------------------------------------------- # PROGRAM'S MAIN LOGIC salesAmount = float (raw_input("Enter the sales amount:")) salesTax = float(salesAmount*0.08) total = salesAmount + salesTax print "The sales amount is $", salesAmount print …

Member Avatar for vegaseat
0
214