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??