This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 🌞 Morning 7 commits ▊░░░░░░░░░░░░░░░░░░░░ 4.1% | |
| 🌆 Daytime 57 commits ███████░░░░░░░░░░░░░░ 33.7% | |
| 🌃 Evening 58 commits ███████▏░░░░░░░░░░░░░ 34.3% | |
| 🌙 Night 47 commits █████▊░░░░░░░░░░░░░░░ 27.8% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //김민진 | |
| // 입력받은 후보자의 이름을 배열로 만들어 랜덤으로 뽑아내는 아이디어로 접근했는데 잘 안돼서 하다가 포기했습니다..ㅠ | |
| import java.util.Scanner; | |
| import java.util.Random; | |
| public class Main { | |
| public static void main(String[] args) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //김민진 | |
| import java.util.ArrayList; | |
| import java.util.Scanner; | |
| public class new8 { | |
| public static int income = 0; | |
| public static ArrayList<int[]> list; | |
| public static void incomeData(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //김민진 | |
| import java.util.ArrayList; | |
| import java.util.Arrays; | |
| import java.util.Scanner; | |
| public class Main { | |
| public static void output() { | |
| Scanner sc = new Scanner(System.in); | |
| ArrayList<int[]> listNumber = new ArrayList<>(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 김민진 | |
| import java.util.Scanner; | |
| import java.time.LocalDate; | |
| public class Main { | |
| public static void makeCalender (int year,int month) { | |
| int date = 1; | |
| LocalDate calenderDay = LocalDate.of(year,month,date); | |
| int day = calenderDay.getDayOfWeek().getValue(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //김민진 | |
| import java.util.Scanner; | |
| import java.util.Random; | |
| public class Main { | |
| public static void main(String[] args) { | |
| System.out.println("[주민등록번호 계산]"); | |
| System.out.print("출생년도를 입력해 주세요.(yyyy):"); | |
| Scanner sc0 = new Scanner(System.in); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //김민진 | |
| import com.sun.xml.internal.ws.api.model.wsdl.WSDLOutput; | |
| import java.util.Scanner; | |
| public class Main { | |
| public static void main(String[] args) { | |
| System.out.println("[입장권 계산]"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.Scanner; | |
| public class Main { | |
| public static void main(String[] args) { | |
| System.out.println("[캐시백 계산]"); | |
| System.out.print("결제 금액을 입력해 주세요.(금액):"); | |
| Scanner sc = new Scanner(System.in); | |
| int c = sc.nextInt(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 김민진 | |
| public class MiniHomework01 { | |
| public static void main(String[] args) { | |
| System.out.println("[구구단 출력]"); | |
| for (int i = 1; i <= 9; i++) { | |
| for (int j = 1; j <= 9; j++) { | |
| int a = i * j; |