"C: \Program Files\Java\jdk1.8.0_231\bin\java.exe" ... Connected to the target VM, address: '127.0.0.1:54021', transport: 'socket' Welcome to my Personal Management Program Choose one of the options: II Add a new Faculty member Add a new Student Print tuition invoice for a student Print information of a faculty Exit Program Enter your selection: 2 Enter the student's info: Name of Student:Julia Alvarez ID:Gpa:3.26 Credit hours: Thanks! 1- Add a new Faculty member 2- Add a new Student 3- Print tuition invoice for a student 4- Print information of a faculty 5- Exit Program Enter your selection: 3 Enter the student's id: jul254 Here is the tuition invoice for Julia Alvarez : Julia Alvarez jul254 Credit Hours:7 ($236.45/credit hour) Fees: $52 Total payment: $1,707.15 ($0 discount applied) 1- Add a new Faculty member 2- Add a new Student 3- Print tuition invoice for a student 4- Print information of a faculty 5- Exit Program Enter your selection: 3 Enter the student's id: eri856 Sorry-student not found!

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
100%

I am not able to get the ID, it jumps straight to GPA, where did i mess up? This is my code : 

package com.company;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.Scanner;

class UniversityPersonnelManagement {

public static void main(String[] args) {
ArrayList<Student> studentList= new ArrayList<Student>();
ArrayList<Faculty> facultyList= new ArrayList<Faculty>();
System.out.println("Welcome to my Personal Management Program");
for(;;)
{
int input=0;
System.out.println(" Choose one of the options:");
System.out.println("Add a new Faculty member");
System.out.println("Add a new Student");
System.out.println("Print tuition invoice for a student");
System.out.println("Print information of a faculty");
System.out.println("Exit Program");
System.out.print(" Enter your selection: ");
Scanner s=new Scanner(System.in);
try{
input=s.nextInt();
}
catch (Exception e) {
System.out.println("Invalid entry- please try again");
}
if(input==1)
{
Faculty f=new Faculty();
System.out.println("Enter the faculty’s info:");
System.out.print("Name of the faculty:");
f.fullName= s.next();
System.out.print("ID:");
f.ID= s.next();
for(;;)
{
String rank;
System.out.print("Rank:");
rank=s.next();
if(rank.equalsIgnoreCase("professor")||rank.equalsIgnoreCase("adjunct"))
{
f.Rank=rank;
break;
}
else
{
System.out.print("Sorry entered rank (" +rank+") is invalid");
}
}
for(;;)
{
String department;
System.out.print("Department:");
department=s.next();
if(department.equalsIgnoreCase("mathematics")||department.equalsIgnoreCase("engineering")||department.equalsIgnoreCase("arts")||department.equalsIgnoreCase("science"))
{
f.Department=department;
break;
}
else
{
System.out.print("Sorry entered department (" +department+") is invalid");
}
}
System.out.println("Thanks!");
facultyList.add(f);
}
if(input==2)
{
Student st =new Student();
System.out.println("Enter the student’s info:");
System.out.print("Name of Student:");
st.fullName= s.next();
System.out.print("ID:");
st.ID= s.next();
System.out.print("Gpa:");
st.Gpa= s.nextDouble();
System.out.print("Credit hours:");
st.numberOfCreditHoursCurrentlyTaken= s.nextInt();
System.out.println("Thanks!");
studentList.add(st);

}
if(input==3)
{
System.out.print("Enter the student’s id:");
String id= s.next();
Student stnt=new Student();
Iterator<Student> si= studentList.iterator();
while (si.hasNext())
{
stnt= si.next();
if(stnt.ID==id)
{
break;
}
}
if(stnt.fullName==null)
{
System.out.print("Sorry-student not found!");
}
else
{
stnt.generateTuituonInvoice(stnt);
}

}
if(input==4)
{
System.out.print("Enter the faculty’s id: ");
String id= s.next();
Faculty ft=new Faculty();
Iterator<Faculty> si=facultyList.iterator();
while (si.hasNext())
{
ft= si.next();
if(ft.ID==id)
{
break;
}
}
if(ft.fullName==null)
{
System.out.print("Sorry-Faculty not found!");
}
else
{
System.out.println("Faculty found:");
System.out.println("--------------------------------------------------");
System.out.println(ft.fullName);
System.out.println(ft.Department+" Department, "+ft.Rank);
System.out.println("--------------------------------------------------");
}
}
if(input==5)
{
break;
}
}
}

}


class Faculty extends Person{
public String Department;
public String Rank;

public void add() {
// TODO Auto-generated method stub

}
public String getDepartment() {
return Department;
}
public void setDepartment(String department) {
Department = department;
}
public String getRank() {
return Rank;
}
public void setRank(String rank) {
Rank = rank;
}

}

class Student extends Person {
public double Gpa;
public int numberOfCreditHoursCurrentlyTaken;


public double getGpa() {
return Gpa;
}
public void setGpa(double gpa) {
Gpa = gpa;
}
public int getNumberOfCreditHoursCurrentlyTaken() {
return numberOfCreditHoursCurrentlyTaken;
}
public void setNumberOfCreditHoursCurrentlyTaken(int numberOfCreditHoursCurrentlyTaken) {
this.numberOfCreditHoursCurrentlyTaken = numberOfCreditHoursCurrentlyTaken;
}


public void add() {


}
public void generateTuituonInvoice(Student stnt)
{
System.out.println("Here is the tuition invoice for" +stnt.fullName+":");
System.out.println("--------------------------------------------------");
System.out.println(stnt.fullName+" "+ stnt.ID);
System.out.println("Credit Hours:"+stnt.numberOfCreditHoursCurrentlyTaken+"($236.45/credit hour)");
System.out.println("Fees: $52");
if(Gpa>=3.85)
{
double payment=(52+(stnt.numberOfCreditHoursCurrentlyTaken*236.45))*0.75;
double dis= (52+(stnt.numberOfCreditHoursCurrentlyTaken*236.45))*0.25;
System.out.println("Total payment: $" +payment+"($"+dis+" discount applied)");

}
else{
double payment=(52+(stnt.numberOfCreditHoursCurrentlyTaken*236.45));

System.out.println("Total payment: $" +payment+"($0 discount applied)");
}
System.out.println("--------------------------------------------------");
}

}

abstract class Person {
public String fullName;
public String ID;
public abstract void add();
}

"C: \Program Files\Java\jdk1.8.0_231\bin\java.exe" ...
Connected to the target VM, address: '127.0.0.1:54021', transport: 'socket'
Welcome to my Personal Management Program
Choose one of the options:
II
Add a new Faculty member
Add a new Student
Print tuition invoice for a student
Print information of a faculty
Exit Program
Enter your selection: 2
Enter the student's info:
Name of Student:Julia Alvarez
ID:Gpa:3.26
Credit hours:
Thanks!
Transcribed Image Text:"C: \Program Files\Java\jdk1.8.0_231\bin\java.exe" ... Connected to the target VM, address: '127.0.0.1:54021', transport: 'socket' Welcome to my Personal Management Program Choose one of the options: II Add a new Faculty member Add a new Student Print tuition invoice for a student Print information of a faculty Exit Program Enter your selection: 2 Enter the student's info: Name of Student:Julia Alvarez ID:Gpa:3.26 Credit hours: Thanks!
1- Add a new Faculty member
2- Add a new Student
3- Print tuition invoice for a student
4- Print information of a faculty
5- Exit Program
Enter your selection: 3
Enter the student's id: jul254
Here is the tuition invoice for Julia Alvarez :
Julia Alvarez
jul254
Credit Hours:7 ($236.45/credit hour)
Fees: $52
Total payment: $1,707.15
($0 discount applied)
1- Add a new Faculty member
2- Add a new Student
3- Print tuition invoice for a student
4- Print information of a faculty
5- Exit Program
Enter your selection: 3
Enter the student's id: eri856
Sorry-student not found!
Transcribed Image Text:1- Add a new Faculty member 2- Add a new Student 3- Print tuition invoice for a student 4- Print information of a faculty 5- Exit Program Enter your selection: 3 Enter the student's id: jul254 Here is the tuition invoice for Julia Alvarez : Julia Alvarez jul254 Credit Hours:7 ($236.45/credit hour) Fees: $52 Total payment: $1,707.15 ($0 discount applied) 1- Add a new Faculty member 2- Add a new Student 3- Print tuition invoice for a student 4- Print information of a faculty 5- Exit Program Enter your selection: 3 Enter the student's id: eri856 Sorry-student not found!
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Adjacency Matrix
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education