[JAVA] SWEA 1217 - 거듭 제곱

hyng·2022년 1월 11일
0

SWEA

목록 보기
6/78

import java.util.*;
class Solution
{
	public static void main(String args[]) throws Exception
	{
		Scanner sc = new Scanner(System.in);

        StringBuffer sb = new StringBuffer();

        int T = 10;

        for(int tc=1; tc<=T; tc++){
            sb.append("#").append(sc.nextInt()).append(" ");
            
            int N = sc.nextInt();
            int M = sc.nextInt();

            sb.append(solve(0, N, M)).append("\n");
            
        }
        System.out.println(sb);
	}
    static int solve(int c, int N, int M){
        if(c >= M){
            return 1;
        }
        return N * solve(c+1, N, M);
    }
    
}
profile
공부하고 알게 된 내용을 기록하는 블로그

0개의 댓글