정올 java 5881 [정올/JAVA] 588 : 함수3 - 자가진단2 자연수 N을 입력받아 재귀함수를 이용하여 N부터 1까지 차례대로 출력하는 프로그램을 작성하시오. N은 50이하의 자연수이다. 공부하시는대에 도움이 됐으면 좋겠습니다. 답안코드 확인해주세요! 더보기 import java.util.Scanner; public class Main { public static void func(int input) { if (input == 0) { return; } else { System.out.print(input + " "); func(input - 1); } } public static void main(String args[]) { Scanner in = new Scanner(System.in); int input = in.nextInt(); func(input); } } 더 많은 자바코드가 보고 싶다면? https://chuinggun.tistory.com/category/%EC%95%8C.. 2020. 8. 25. 이전 1 다음