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 |
import java.util.Scanner;
public class No03 {
public static int arithmeticSequence(int n) {
int count = 0;
if(n < 100) {
return n;
} else {
count = 99;
for(int i = 100; i <= n; i++) {
int one = i%10;
int ten = (i/10)%10;
int hun = i/100;
if(one-ten == ten - hun) {
count++;
}
}
return count;
}
} //arithmeticSequence 메소드
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("n : ");
int n = sc.nextInt();
System.out.println(arithmeticSequence(n));
} //main
} //class
|
cs |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 11720) (0) | 2021.05.31 |
---|---|
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 11654) (0) | 2021.05.30 |
JAVA. 백준 알고리즘 단계별 문제 - 6단계(문제 번호 4673) (0) | 2021.05.28 |
JAVA. 백준 알고리즘 단계별 문제 - 6단계(문제 번호 15596) (0) | 2021.05.27 |
JAVA. 백준 알고리즘 단계별 문제 - 5단계 (0) | 2021.05.26 |