Grade book
Sign in to test your solution.
// Grade book program
using System;
using System.IO;
using System.Collections.Generic;
class Submission
{
// -------------------------
// Subprograms
// -------------------------
static void read_grade_book(string filename)
{
}
static void output_assignment()
{
}
// -------------------------
// Main program
// -------------------------
public static void Main(string[] args)
{
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.