Calc Hub

GPA Calculator

Calculate your college GPA on a 4.0 scale. Add courses with credit hours and letter grades to get your cumulative GPA instantly.

Last updated: 2026-03-07

GPA calculator

Enter your courses

Add courses with credit hours and letter grades. Up to 10 courses.

At least one course with credits is required.

GPA

--

Enter your courses to calculate your GPA.

Calculation History (0)
No calculations yet. Complete a calculation to see it here.

Example calculations

Tap an example to prefill the calculator with sample values.

Dean's List Semester

4 courses, mostly A's

A strong semester with 15 credit hours and high grades.

Result: GPA 3.83 — A

Mixed Semester

5 courses across B-C range

A typical semester with a mix of grades across 15 credits.

Result: GPA 3.05 — B

Heavy STEM Load

4 STEM courses, 16 credits

A challenging engineering semester with lab courses.

Result: GPA 3.18 — B+

How GPA is calculated

Your Grade Point Average (GPA) is a weighted average of the grade points you earn in each course, weighted by the number of credit hours.

Formula: GPA = Total Grade Points ÷ Total Credit Hours

Where Grade Points for a course = Grade Value × Credit Hours

Standard 4.0 scale:

  • A / A+ = 4.0   A- = 3.7
  • B+ = 3.3   B = 3.0   B- = 2.7
  • C+ = 2.3   C = 2.0   C- = 1.7
  • D+ = 1.3   D = 1.0   D- = 0.7
  • F = 0.0

Most US colleges use a 4.0 scale. A cumulative GPA above 3.0 is generally considered good, above 3.5 is very good, and above 3.7 is excellent (Dean's List at many schools).

GPA calculator FAQs

Answers to common GPA questions.

What is a good college GPA?

A GPA above 3.0 (B average) is generally considered good. Above 3.5 is very good, and above 3.7 often qualifies for Dean's List or Latin honors. Graduate school admissions typically look for 3.0+ (competitive programs want 3.5+).

How do I calculate cumulative GPA?

Cumulative GPA includes all courses from all semesters. Add every course you've taken with its credit hours and grade, and the calculator will compute your overall GPA across all of them.

Does an A+ count as higher than 4.0?

On the standard 4.0 scale used by most US colleges, an A+ is worth 4.0 — the same as an A. Some schools use a 4.3 scale where A+ = 4.3, but this calculator uses the standard 4.0 scale.

Do pass/fail courses affect my GPA?

Pass/fail or credit/no-credit courses typically do not affect your GPA. Only courses with letter grades are included in the GPA calculation. Exclude pass/fail courses when using this calculator.

Explore more student and utility calculators.

Get more student calculators

Join the Calc Hub newsletter for new tools and academic insights.

Was this calculator helpful?

Your feedback helps us improve future calculators.

Disclaimer

This calculator uses the standard US 4.0 GPA scale. Your institution may use a different scale or weighting system. Check with your registrar for official GPA calculations.

Embed this calculator

Copy the code below to embed this calculator on your website or blog. It's free — no API key needed.

<iframe
  src="https://calc.mintloop.dev/embed/daily/gpa-calculator"
  width="100%"
  height="600"
  frameborder="0"
  title="GPA Calculator"
  loading="lazy">
</iframe>
Optional: auto-resize script
<script>
var CALC_HUB_ORIGIN = 'https://calc.mintloop.dev';
window.addEventListener('message', function(e) {
  if (e.origin !== CALC_HUB_ORIGIN) return;
  if (!e.data || e.data.type !== 'calc-hub-resize') return;
  var frames = document.querySelectorAll('iframe[src*="calc.mintloop.dev"]');
  frames.forEach(function(f) {
    if (f.contentWindow === e.source) {
      f.style.height = String(Math.max(0, Number(e.data.height) || 0)) + 'px';
    }
  });
});
</script>