본문 바로가기

코딩테스트/Level1

자연수의 합

문제

자연수 A, B가 주어지면 A부터 B까지의 합을 수식과 함께 출력하세요.

입력 예제
3, 7

출력 예제
3 +4 +5 +6 +7 = 25

public class problem02 {

	public static void main(String[] args) {
		//자연수의 합
		int A = 3;
		int B = 7;
		int result = method(A, B);
		
		System.out.println(result);
		
	}
	
	public static int method(int A, int B) {
		
		int result = 0;
		for(int i=A; i<=B; i++) {
			result += i;
		}
		
		return result;
	}
	
}
 

'코딩테스트 > Level1' 카테고리의 다른 글

숫자만 추출  (0) 2022.02.09
나이계산  (0) 2022.02.09
나이 차이  (0) 2022.02.09
진약수의 합  (0) 2022.02.09
1부터 N까지 M의 배수합  (0) 2022.02.08