package class04;
public class Test06_2 {
public static void main(String[] args) {
int num = 1;
while (num <= 1000) {
int i = 0;
int total = 0; // 약수들을 저장하는 역할
while (i < num - 1) {
i++;
if (num % i == 0) {
total += i;
}
}
if (total == num) {
System.out.print(num + " ");
}
num++;
}
}
}
'개발자노트' 카테고리의 다른 글
반복문 for를 이용한 완전수 구하기 (0) | 2022.06.09 |
---|---|
while 예제1 카페 메뉴판 (0) | 2022.06.09 |
반복문 while 통해 완전수 구하기 (0) | 2022.06.09 |
반복문 while로 약수 구하기 (0) | 2022.06.09 |
반복문 while로 정수1과 정수2사이의 수 세기 (0) | 2022.06.09 |