# Language/Java

명품 JAVA 프로그래밍 7장 1번

왕꿀꿀 2018. 7. 22. 17:09

명품 자바 Programming 
Chapter7 Ex1

Q :




문제








Solution







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package ex;
import java.util.Iterator;
import java.util.Scanner;
import java.util.Vector;
public class Ex1 {
 
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        Vector<Double> doubleV = new Vector<Double>();
        for(int i=0; i<10; i++) {
            System.out.print((i+1+ "번째 실수를 입력하시오");
            doubleV.add(in.nextDouble());
        }
        double max = doubleV.get(0);
        Iterator<Double> it = doubleV.iterator();
        while(it.hasNext()) {
            double temp = it.next();
            if(max <= temp)
                max = temp;
        }
        System.out.println("가장 큰 값은 : " + max);
    }
 
}
 
cs









Key Point






벡터와 iterator 이용








유용하셨다면 공감 버튼 ↓ 눌러주세요! 


728x90