일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 28 | 29 | 30 | 31 |
Tags
- 국회의원 & 높으신 분들 어록
- https://minkwon4.tistory.com/161
- https://tecoble.techcourse.co.kr/post/2021-08-07-logback-tutorial/
Archives
- Today
- Total
OPEN between Secret
입력받은 5개 정수중 젤 큰수 출력하기(배열) 본문
반응형
import java.util.Scanner;
public class maytoone {
public static void main( String [] args){
Scanner sc = new Scanner(System.in);
int inArray[] = new int [5];
int max = 0;
for ( int i = 0 ; i <5 ; i ++ ) {
inArray[i] = sc.nextInt();
if(inArray[i] > max)
max = inArray[i];
}
System.out.println("입력된 수에서 가장 큰 수는" + max + "입니다.");
}
}
--------------------------------------------------------------
inArray[i] = sc.nextInt();
생성된 배열에다가 입력받은거 한개씩 저장하는방법 이다.(이게 참 그냥 볼때는 어려워보였는데 쳐보니깐 알겟다는)
이렇게 해보니 예제라는게 쳐보면서 생각을 해야 되는것같다.
반응형
'java > 예제' 카테고리의 다른 글
두 정수의 나눗셈에서 ArithmeticException 처리 (예외처리) (0) | 2012.05.12 |
---|---|
length 필드 이해하기 (0) | 2012.05.06 |
a 에서 z 까지 출력(do while) (0) | 2012.05.06 |
입력된 수의 평균 구하기 (0) | 2012.05.06 |
1~10까지 숫자랑 합을 표현 (0) | 2012.05.06 |