// top-down-0.cc

// Computes weighted average score of grades. Grades include two
// assignments two midterm exams and one final exam.  // All grades
// are input from standard input, but the weights of // each type of
// grade are hard coded.

// C header files
extern "C" {
}

// Standard C++ header files
#include <iostream>

// My own C++ header files

// Macro definitions

// Forward definitions of auxiliary functions

// Global declarations
 
// Main function
int main() {
  // Read assignment grades
  // Read exam grades
  // Read final exam grade
  // Calculate average
  // Print report
  return 0;
}


// Auxiliary functions
