// The "Marks1a" class.
import java.awt.*;
import hsa.Console;
public class Marks1a
{
static Console c; // The output console
public static void main (String[] args)
{
c = new Console ();
// Place your program here. 'c' is the output console
int x;
int mark;
x = 0;
while (x < 1)
{
c.print ("How many marks: ");
x = c.readInt ();
}
int total;
total = 0;
for (int i = 1 ; i <= x ; i = i + 1)
{
c.print ("Enter mark " + i + ": ");
mark = c.readInt ();
total = total + mark;
}
c.print ("Your average is: " + total / x + " percent.");
} // main method
} // Marks1a class