2017. 4. 9. 15:53
반응형
자바 소수 판별 및 출력하기
소수 : 1과 자기자신만으로 나누어 떨어지는 양수
public static void main(String[] args) {
for(int i = 1; i <= 100; i++) {
int count = 0;
int div = 1;
while(count < 3 && div <= i) if(i%div++ == 0) count++;
if(count == 2) System.out.println(i);
}
}
반응형
'dev' 카테고리의 다른 글
MariaDB Java 연결 (0) | 2017.05.31 |
---|---|
[Ubuntu] Apache, MySQL, php 설치 (0) | 2017.04.17 |
[Ubuntu] 자바 설치하기 (0) | 2017.04.17 |
PHP 실습할때 (0) | 2017.04.15 |
[jQuery] 단축키 만들기 (0) | 2017.03.05 |
[Java] 로또번호 생성하기 (0) | 2017.03.01 |
[Java] 구구단 출력하기 (0) | 2017.03.01 |
[JavaScript] 로또번호 생성기3.0 (제외수 지정 가능) (1) | 2017.02.26 |