Search:

Type: Posts; User: Dsoto

Search: Search took 0.09 seconds.

  1. Replies
    2
    Views
    1,438

    Re: Tuition project that should have 3 classes

    I have adjusted my student class and it works great now. My University class isn't working properly though. I get this error:
    Exception in thread "main" java.lang.NullPointerException
    at...
  2. Replies
    2
    Views
    1,438

    Tuition project that should have 3 classes

    import java.util.Scanner;
    public class Student {

    private String FirstName;
    private String LastName;
    private String Address;
    private String PhoneNumber;
    private int Credits;...
  3. Thread: Java error

    by Dsoto
    Replies
    3
    Views
    1,127

    Java error

    public class Student {

    private String FirstName;
    private String LastName;
    private String Address;
    private String PhoneNumber;
    private int Credits;
    private double Tuition;...
  4. Java program which finds an approximate solution to an equation f(x)=0.

    I have to write a program which finds an approximate solution to an equation f(x)=0 for some function f using the bisection method. To solve the program using the method first find two values of x,...
Results 1 to 4 of 4