Java로 구현한 1091번 수 나열하기3 문제 풀이입니다. https://codeup.kr/problem.php?id=1091 [기초-종합] 수 나열하기3 C언어기초100제v1.2 : @컴퓨터과학사랑, 전국 정보(컴퓨터)교사 커뮤니티/연구회 - 학교 정보(컴퓨터)선생님들과 함께 수업/방과후학습/동아리활동 등을 통해 재미있게 배워보세요. - 모든 내용 codeup.kr import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long a = sc.nextLong(); int m = sc.nextInt(); int d = sc.nextInt()..