Part #2 - Programming (20 pts) Write a class definition (not a program, there is
ID: 3849534 • Letter: P
Question
Part #2 - Programming (20 pts)
Write a class definition (not a program, there is no main method) named Geek (saved in a file Geek.java) that models a person who is a geek. For our purposes, a geek is someone who delights in answering all sorts of questions, such as “is this string a palindrome?”, “what is the sum of all numbers between two numbers?” among other things. A Geek has a name and also keeps track of how many questions s/he has answered.
Your Geek class must have:
Only two instance variables - the Geek’s name and number of questions asked so far.
public Geek(String name, int numQuestions) - Constructor - sets the Geek’s name and the num- ber of questions asked.
public String getName() - Takes no parameters and returns the Geek’s name as a String (don’t count this request in the total questions).
public int getNumberOfQuestions() - Takes no parameters and returns as an int how many ques- tions has been asked (don’t count this request in the total).
public boolean isEven(int num1, int num2) - It takes two integers and returns a boolean value indicating if the sum of the numbers is even or not (this counts as the Geek being asked one more question, so update the appropriate instance variable).
public int sum(int num1, int num2) - Takes two integers and returns an int which is the sum of all numbers between the two inclusive (include the numbers in the sum) - for full credit this method should work even if the two numbers are the same (the sum is just one of the numbers) or if the first number is larger than the second. Also, you cannot assume which number will be greater.
public boolean leapYear(int year) - It takes an integer and returns a boolean value indicating if the year is a leap year. A leap year is one with 366 days. A year is a leap year if:
– it is divisible by 4 (for example, 1980),
– except that it is not a leap year if it is divisible by 100 (for example 1900); – however, it is a leap year if it is divisible by 400 (for example, 2000).
There were no exceptions before the introduction of the Gregorian calendar on October 15, 1582 (for example, 1500 was a leap year). You may NOT use Java’s GregorianCalendar class. (This counts as the Geek being asked one more question, so update the appropriate instance variable).
Save the Geek class in a file called Geek.java. Write a test driver called Assignment5.java with the main method to create a new Geek object and to test the methods in the class Geek. A sample output is shown below.
Assignment5.java will provide the following menu to the user. Based on the user’s choice, the program needs to perform corresponding operation. This will be done by calling (invoking) one of the methods you defined in the Geek class. The program will terminate when the user enters ’q’.
Here is the description for each option:
Helpful Hints
Work on it in steps - write one method, test it with a test driver and make sure it works before going on to the next method.
Always make sure your code compiles before you add another method.
Your methods should be able to be called in any order.
Sample Output
(user input is in bold)
Command Options ———————————–
a : get name
b: number of questions asked c: sum is even
d: sum between two integers e: leap year
?: display the menu again
q: quit this program
Please enter a command or type? a Name: Geek
Please enter a command or type? b Number of questions: 0
Please enter a command or type? c Enter a number: 3
Enter the second number: 3
The sum of the numbers is even
Please enter a command or type? c Enter a number: 3
Enter the second number: 4
The sum of the numbers is
Please enter a command or Number of questions: 2
Please enter a command or Enter a number: 1
Enter a second number: 10 The sum between 1 and 10
Please enter a command or Enter the first number: 7 Enter the second number: 4 The sum between 4 and 7 is 22
Please enter a command or type? b Number of questions: 4
Please enter a command or type? e Enter a year: 1900
1900 is not a leap year
Please enter a command or type? e Enter a year: 1996
1996 is a leap year.
odd type? b
type? d
is 55
type? d
Please enter a command or type? e Enter a year: 2000
2000 is a leap year
Please enter a command or type? b Number of questions: 7
Please enter a command or type? q Press any key to continue . . .
Submission
• Go to the course web site (my.asu.edu), and then click on the on-line Submission tab.
• Submit your Assignment5.java and Geek.java file on-line. Make sure to choose Hw5 from drop-
down box.
Important Note: You may resubmit as many times as you like until the deadline, but we will only mark your last submission.
NO LATE ASSIGNMENTS WILL BE ACCEPTED.
Test Class:
Explanation / Answer
Program code:
import java.util.*;
public class Assignment5 {
public static void main (String[] args) {
Scanner console = new Scanner (System.in);
int num1,num2;
String choice;
char command;
// print the menu
printMenu();
// create new Geek object
Geek myGeek = new Geek("Geek", 0);
do
{
// ask a user to choose a command
System.out.println(" Please enter a command or type ?");
choice = console.next().toLowerCase();
command = choice.charAt(0);
switch (command)
{
case 'a':
System.out.println("Name is : " + myGeek.getName());
break;
case 'b': //
System.out.println("Number of questions: " +
myGeek.getNumberOfQuestions());
break;
case 'c': //
//asks for two integers and finds and prints if their sum is even or odd
System.out.print("First Number: ");
num1=console.nextInt();
System.out.print("Second Number: ");
num2=console.nextInt();
System.out.println(myGeek.isEven(num1, num2));
break;
case 'd': //
System.out.print("First Number: ");
num1=console.nextInt();
System.out.print("Second Number: ");
num2=console.nextInt();
System.out.println("Sum between two number are: "+myGeek.sum(num1, num2));
//asks for two integers and finds and prints the sum of all integers between them (inclusive)
break;
case 'e': //
//asks for a year and finds out and prints if is leap year or not
System.out.print("Enter year: ");
num1=console.nextInt();
System.out.println(myGeek.leapYear(num1));
break;
case '?':
printMenu();
break;
case 'q':
break;
default:
System.out.println("Invalid input");
}
} while (command != 'q');
} //end of the main method
public static void printMenu()
{
System.out.print(" Command Options "
+ "----------------------------------- "
+ "a: get name "
+ "b: number of questions asked "
+ "c: sum is even "
+ "d: sum between two integers "
+ "e: leap year "
+ "?: display the menu again "
+ "q: quit this program ");
} // end of the printMenu method
} // end Assignment5 class
public class Geek {
String name;
int numQuestions;
public Geek(String name, int numQuestions){
this.name=name;
this.numQuestions=numQuestions;
}
public String getName(){//get geek name
return name;
}
public int getNumberOfQuestions(){//get question attempted
return numQuestions;
}
public boolean isEven(int num1, int num2){//check if sum oof two numbers are even
int sum;
sum=num1+num2;
numQuestions++;
if(sum%2==0){
return true;
}else{
return false;
}
}
public int sum(int num1, int num2) {//calculate sum between two numbers
int sumOfNum=0;
int min,max;
if(num1<=num2){
min=num1;
max=num2;
}else{
min=num2;
max=num1;
}
for(int i=min;i<=max;i++){
sumOfNum=sumOfNum+i;
}
numQuestions++;//incrementing no of question attempted by geek
return sumOfNum;
}
public boolean leapYear(int year){//check for leap year
numQuestions++;
if(year%4==0){
return true;
}else{
return false;
}
}
}
Output:
Command Options
-----------------------------------
a: get name
b: number of questions asked
c: sum is even
d: sum between two integers
e: leap year
?: display the menu again
q: quit this program
Please enter a command or type ?
a
Name is : Sunil
Please enter a command or type ?
b
Number of questions: 0
Please enter a command or type ?
c
First Number: 12
Second Number: 6
true
Please enter a command or type ?
d
First Number: 1
Second Number: 10
Sum between two number are: 55
Please enter a command or type ?
e
Enter year: 1998
false
Please enter a command or type ?
?
Command Options
-----------------------------------
a: get name
b: number of questions asked
c: sum is even
d: sum between two integers
e: leap year
?: display the menu again
q: quit this program
Please enter a command or type ?
b
Number of questions: 3
Please enter a command or type ?
q