[백준] 2231번 분해합 (java, 완전탐색)
728x90
반응형
import java.util.Scanner;
public class Main {
static int n;
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
n=sc.nextInt();
for (int i = 1; i <=n; i++) {
int temp=i;
String s=Integer.toString(i);
for (int j = 0; j <s.length(); j++) {
temp+=s.charAt(j)-'0';
}
if(temp==n) {
System.out.println(i);
System.exit(0);
}
}
System.out.println(0);
}
}
728x90
반응형
'백준' 카테고리의 다른 글
[백준] 17413번 단어 뒤집기 2 (JAVA, 구현) (0) | 2021.04.11 |
---|---|
[백준] 19532번 수학은 비대면 강의입니다. (java, 완전탐색) (0) | 2021.04.09 |
[백준] 2798번 블랙잭 (java, 완전탐색) (0) | 2021.04.09 |
[백준] 1212번 8진수 2진수 (java, 구현) (0) | 2021.04.05 |
[백준] 1774번 우주신과의 교감 (java, mst, 크루스칼) (0) | 2021.04.05 |
TAGS.