import java.util.Scanner ;
public class Verk6
{
	static public void main(String[]args)
	{
		Scanner scan=new Scanner(System.in) ;
		double[] a=new double[1000] ;
		Stats stats=new stats() ;
		int i=0 ;
		while(scan.hasNext())
		{
			a[i]=scan.nextDouble();
			stats.add(a[i]);
			i++ ;
		}
		Arrays.sort(a, 0, i) ;
		if(i%2==0)
		{
			int m=i/2 ;
			System.out.println("Median value:"+(a[m-1]+a[m])/2.0) ;
		}
		else
		{
			System.out.println("Median value:"+a[i/2]) ;
		}
		System.out.print("Count of numbers less than average:") ;
		System.out.println(Verk6(a, 0, i, stats.average())) ;
	}	
}

This is supposed to count all numbers below average, but I keep getting errors, whats wrong with my program??

Recommended Answers

All 3 Replies

What "errors". The complete stack trace / compiler message please.

What errors exactly - if there's a message please quote it in full - if its a wrong result tell us what the actual and expected results are.

please post your errors with line numbers

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.