JAVA 자료실

펀치머신

페이지 정보

작성자 최고관리자 작성일 70-01-01 09:00 조회 333 댓글 0

본문

가장 고득점자를 찾는 프로그램을 만드시오.

[code=php]
public class Punch {

    public static void main(String[] args) {

        String[] names = { "Elena", "Thomas", "Hamilton", "Suzie", "Phil",
                          "Matt", "Alex", "Emma", "John", "James",
                          "Emily","Daniel", "Neda", "Aaron", "Kate" };

        int[] scores = {590, 252, 562, 251, 519,
                        408, 870, 646, 185, 620,
                        577, 633, 937, 380, 285};

        int highScoreIdx = 0;
        for (int i = 0; i < scores.length; i++)
            if (scores[highScoreIdx] < scores[i])
                highScoreIdx = i;

        System.out.println("최고득점자는 " + names[highScoreIdx] + " 입니다.");
    }
}
[/code]

댓글목록 0

등록된 댓글이 없습니다.

알림 0