Power java 10장 Programming 2번문제 풀이

Posted by 알 수 없는 사용자
2016. 4. 11. 11:46 Java/PowerJava 문제풀이

※ 문제풀이는 작성자 본인이 직접 한것이므로 정답이 아닐 수 있습니다.

   혹시 보시고 틀린 부분이 있으면 알려주시기 바랍니다.

 

2. 문제는 책을 참고하시기 바랍니다.

 

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
26
27
package day07;
 
public class Programming10_2 {
    public static void main(String[] args) {
        
        int[] arr ={10,13,33,35,36,55,88,97,98,99};
        int count1=1,count2=10;
        for(int i=0;i<arr.length;i++){
            
            System.out.print(count1 +"-"+ count2 +" : ");
            for(int k=0;k<arr.length;k++){
                
                if(arr[k] >= count1 && arr[k]<= count2){
                System.out.print("*");    
                }
            }
            System.out.println();
            count1 = count2+1;
            count2 = count2+10;
            
            
        }
    }
}
 
 
 
cs

 ※ 문제 출처 : POWER JAVA 2판/인피니티북스/천인국 하상호 공저