[ java ] 메쏘드를 이용해서 시작수부터 종료수까지의 약수 구하기
페이지 정보
작성자 웹지기 댓글 0건 조회 1,864회 작성일 20-12-17 12:33본문
public class Exam05_startValue_Endvalue {
public static void main(String[] args) {
int startValue = 10;
int endValue=36;
getDivisors(startValue, endValue);
System.out.println("프로그램 종료");
}
public static void getDivisors(int startValue, int endValue) {
//약수를 구하기
for(int j=startValue; j<=endValue; j++) {
getDivisor(j);
}
}
public static void getDivisor(int num) {
//약수를 구하기
System.out.print(num+"약수 : ");
for(int i=1; i<num; i++) {
if(num%i==0)
System.out.print(i+"\t");
}
System.out.println();
}
}
추천0 비추천0
댓글목록
등록된 댓글이 없습니다.