I already got the average and my program is already reading three integer numbers from the user, my problem is I have no idea how to get the maximum and minimum numbers of my program :(
-Im new to programming :(
Here's my program :
Main Class:
import java.util.Scanner;
public class TestNumbers {
public static void main (String[]args){
int n1, n2, n3;
System.out.println("Enter three integer numbers ");
Scanner in = new Scanner(System.in);
n1 = in.nextInt();
n2 = in.nextInt();
n3 = in.nextInt();
Numbers num=new Numbers();
num.setNum(n1, n2, n3);
System.out.println("The Maximum of : "+n1+ " , " +n2+ " , " +n3+ " is ");
System.out.println("The Minimum of : "+n1+ " , " +n2+ " , " +n3+ " is ");
System.out.println("The Average of : "+n1+ " , " +n2+ " , " +n3+ " is "+num.getAve());
System.out.println("Press any key to continue...");
}
}
base class :
public class Numbers {
private int n1;
private int n2;
private int n3;
private int ave;
public void setNum(int n1, int n2, int n3){
this.n1=n1;
this.n2=n2;
this.n3=n3;
}
public double getAve(){
ave=(n1+n2+n3)/3;
return ave;}
}
aveis anint, you are trying to divide it by 3 and then return adouble. Now your turn to guess (just check it out on google, shouldn't be hard to find) why this is not working – mardavi Jan 23 at 13:56