All pastes #2090087 Raw Edit

Someone

public text v1 · immutable
#2090087 ·published 2011-10-14 16:09 UTC
rendered paste body
// 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