• Create a program for Quizzes • Specifically to test your Arithmetic skills • For instance 75 + 31 = • Let us start with only additions and 2 digits numbers • Could the computer grade the Quiz? • Show the students her/his grade
Paradigm public class MyProgram { public static void main(String [] arg) { Student john = new Student(); john.name = "John Doe"; john.sayHello(); john.drawSomething(); } } public class Student { String name; int finalGrade; public void sayHello(){ // print name } public void drawSomething(){ // draw } }