Q:

convert simple uml NumberAnalyzer class diagram to java code

0

convert the following uml NumberAnalyzer class diagram to equavalent java programming code:

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

public class NumberAnalyzer {

	private double numbers[];
	private int count;
	
	public NumberAnalyzer(String filename)
	{
	}
	public double getLowest()
	{
		return 0;
	}
	public double getHighest()
	{
		return 0;
	}
	public double getTotal()
	{
		return 0;
	}
	public double getAverage()
	{
		return 0;
	}
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

convert simple uml ServiceQuote class diagram to j... >>
<< covert the following uml Car class diagram to java...