id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

andersoniii.edwin@cusd80.com > whatDoINeed2
prev  |  next  |  chance

Write the method whatDoINeed2. The method will calculate your exam grade needed given two decimal value for each quarter and a letter grade (char) representing your desired overall grade. The method should return a decimal number (rounded to nearest tenth. We will use the 40-40-20 percent grading system. The letter grade will be the standard grading scale 90% = A


whatDoINeed2(0.82, 0.77, "B") → 82.0
whatDoINeed2(0.94, 0.94, "A") → 74.0
whatDoINeed2(0.99, 0.92, "B") → 18.0

...Save, Compile, Run (ctrl-enter)

public double whatDoINeed2(double f, double s, char gg){ }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 100

Copyright Nick Parlante 2017 - privacy