공부하시는대에 도움이 됐으면 좋겠습니다.
답안코드 확인해주세요!
더보기
import java.util.Scanner;
public class Main {
public static int func(int input) {
int result = 1;
for (int i = 1; i <= input; i++) {
result *= 2;
}
return result;
}
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
int result = in.nextInt();
System.out.println(func(result));
}
}
더 많은 자바코드가 보고 싶다면?
댓글