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 32 33 |
import java.util.Arrays;
import java.util.Scanner;
public class No01 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n;
do {
System.out.print("정수의 개수 : ");
n = sc.nextInt();
} while(n < 0);
int[] arr = new int[n];
for(int i = 0; i < n; i++) {
arr[i] = sc.nextInt();
}
Arrays.sort(arr);
System.out.println("최소값 : " + arr[0]);
System.out.println("최대값 : " + arr[n-1]);
sc.close();
} //main
} //class
|
cs |
\
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 32 |
import java.util.Scanner;
public class No02 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int[] arr = new int[9]; // 배열 선언 for(int i = 0; i < 9; i++) { //배열에 정수 대입 arr[i] = sc.nextInt();
}
sc.close();
int max = arr[0];
int index = 1;
for(int i = 0; i < 9; i++) {
if(arr[i] > max) {
max = arr[i];
index = i+1;
}
}
System.out.println(max);
System.out.println(index);
} //main
} //class
|
cs |
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 |
import java.util.Scanner;
public class No03 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt(); int b = sc.nextInt();
int c = sc.nextInt();
sc.close(); int[] count = new int[10];
int result = a*b*c;
while(result > 0) { count[result%10]++;
result /= 10;
}
for(int i : count) { System.out.println(i);
}
} //main
} //class
|
cs |
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 32 33 |
import java.util.Scanner;
public class No04 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("정수입력 ");
int[] arr = new int[42];
int n;
for(int i = 0; i < 10; i++) {
n = sc.nextInt();
arr[n%42]++;
}
int count = 0; for(int i = 0; i < 42; i++) { if(arr[i] != 0) {
count++;
}
}
System.out.println(count);
sc.close();
} //main
} //class
|
cs |
세준이는 기말고사를 망쳤다. 세준이는 점수를 조작해서 집에 가져가기로 했다. 일단 세준이는 자기 점수 중에 최댓값을 골랐다. 이 값을 M이라고 한다. 그리고 나서 모든 점수를 점수/M*100으로 고쳤다.
예를 들어, 세준이의 최고점이 70이고, 수학점수가 50이었으면 수학점수는 50/70*100이 되어 71.43점이 된다.
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
32
33 34 35 36 37 |
import java.util.Scanner;
public class No05 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("과목수 : ");
int n = sc.nextInt();
int[] arr = new int[n]; //n만큼 배열 선언
int M = arr[0];
for(int i = 0; i < n; i++) { int score = sc.nextInt();
if(0 < score && score <= 100) {
arr[i] = score; //점수 조건 충족 시 배열에 입력
}
if(arr[i] > M) {
M = arr[i]; //점수의 최대값
}
}
double sum = 0;
for(int i = 0; i < n; i++) { sum += (double)arr[i]/M*100; //평균출력
}
System.out.println(sum/n); sc.close();
} //main } //class
|
cs |
"OOXXOXXOOO"와 같은 OX퀴즈의 결과가 있다.
O는 문제를 맞은 것이고, X는 문제를 틀린 것이다.
문제를 맞은 경우 그 문제의 점수는 그 문제까지 연속된 O의 개수가 된다.
예를 들어, 10번 문제의 점수는 3이 된다.
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
32
33
34
35
36
37 38 39 40 41 42 |
import java.util.Scanner;
public class No06 {
public static void main(String[] args) {
System.out.println("OX를 입력하시오.");
Scanner sc = new Scanner(System.in);
String ox = sc.nextLine();
String[] arr = new String[ox.length()]; //ox길이만큼 배열선언하기
sc.close();
for(int i = 0; i < ox.length(); i++) {
arr[i] = ox.substring(i,i+1); // o,x를 배열에 입력하기
}
int score = 0; // 점수
int count = 0; // 'O'가 연속되는 횟수
for(int i = 0; i < ox.length(); i++) { if(arr[i].equals("o")||arr[i].equals("O")) {
count++;
}
else if(arr[i].equals("X") ||arr[i].equals("x")) {
score += count*(count+1)/2;
count = 0; // count 초기화
}
}
if(count > 0) { // O으로 끝나는 점수 처리
score += count*(count+1)/2;
}
System.out.println("점수 : " + score); } //main } //class
|
cs |
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
32
33 34 35 36 37 38 |
import java.util.Scanner;
public class No07 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while(true) {
System.out.print("학생수 : ");
int n = sc.nextInt(); //학생수 입력받기 int[] score = new int[n]; //학생수만큼 배열선언
int sum = 0; //점수합계
for(int i = 0; i < n; i++) {
score[i] = sc.nextInt(); //학생들 점수 입력
sum += score[i]; //학생들 점수 합계
}
int avr = sum/n; //평균
int count = 0; //평균 넘는 학생수
for(int i = 0; i < n; i++) { if(avr < score[i]) {
count++;
}
}
double result = (double)count/n*100; // 평균 넘는 학생 비율 System.out.println(String.format("%.3f", result));
}
} //main } //class
|
cs |
JAVA. 백준 알고리즘 단계별 문제 - 6단계(문제 번호 4673) (0) | 2021.05.28 |
---|---|
JAVA. 백준 알고리즘 단계별 문제 - 6단계(문제 번호 15596) (0) | 2021.05.27 |
JAVA. 백준 알고리즘 단계별 문제 - 4단계 (0) | 2021.05.22 |
JAVA. 백준 알고리즘 단계별 문제 - 3단계 (0) | 2021.05.22 |
JAVA. 백준 알고리즘 단계별 문제 - 2단계 (0) | 2021.05.22 |