java기초-수조의 한 사례-사용자가 입력한 평균수를 구하고 평균수보다 큰 모든 수를 출력합니다

1065 단어 배열
본고는 수조를 통해 실제 수요를 해결할 것이다
다음 프로그램을 통해 사용자가 입력한 숫자의 평균수를 계산해 낸다.평균보다 큰 모든 수를 출력합니다
public class pingjun {
public static void main(String[] args) {

    java.util.Scanner s = new java.util.Scanner(System.in);

   // int a;      
    double sum = 0; //   
    int cnt = 0;  //   
       //        
    // int[] numbers = new int[100];//      100     
    //   //    
    // a = s.nextInt();//                   -1   
    // while (a != -1) //          -1  
    // {
    //     numbers[cnt] = a; //         
    //     sum += a;
    //     cnt++;
    //     a = s.nextInt();
    // }
    // if (cnt > 0) {  


        //       
         cnt = s.nextInt(); //      
   if ( cnt >0)  //        0
   {
     int []numbers =new int[cnt]; //    cnt    
     for(int c =0; c  shuzi) { //    c        sum
                System.out.println(numbers[c]); //       c  

            }

        }
        System.out.println(sum / cnt);  
    }

}

}

좋은 웹페이지 즐겨찾기