import java.io.*;
public class m080529 {

    public static void main(String[] args) throws IOException
    {


        // TODO code application logic here
        //국,영,수, ... 총점, 평균 구하기.




        BufferedReader temp = new BufferedReader(new InputStreamReader(System.in));
       
        String [] subjn = {"국어", "영어", "수학"};
        int[] sub = new int [subjn.length+1];
        double avg = 0.0;
       
        for(int i = 0; i<sub.length-1; i++)
        {
            System.out.print(subjn[i] + " : ");
            sub[i] = Integer.parseInt(temp.readLine());

            if(sub[i]>100  || sub[i]<0)
            {
                System.out.println("잘못 된 수를 입력하셨습니다. 다시 입력 해 주세요.");
                System.out.print(subjn[i]+" : ");
                sub[i] = Integer.parseInt(temp.readLine());
            }
        }
       
        avg =
       
       
       
    }
       
       
}

아직 다 안했음..
 

크리에이티브 커먼즈 라이선스
Creative Commons License
Posted by 쿠겔

ppt 다 만들었다!!!

2008/03/10 02:14


뭐 내용은 거의 없고
설명은 공책에 적어놨으니..
... 남은건 발표 뿐!!

근데 만들어 놨더니 오프에서만 발표하는건 아니겠지?

크리에이티브 커먼즈 라이선스
Creative Commons License
Posted by 쿠겔