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
package com.stdmanager.dto; | |
public class Student { | |
// 번호(no) 이름(name) 나이(age) 성별(gender) | |
private int no; | |
private String name; | |
private int age; | |
private char gender; | |
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
package com.stdmanager.run; | |
import java.util.Scanner; | |
import com.stdmanager.dto.Student; | |
public class Run { | |
public static void main(String[] args) { | |
Scanner sc = 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
package com.stdmanager.run; | |
import java.util.Scanner; | |
import com.stdmanager.dto.Student; | |
public class Run { | |
public static void main(String[] args) { | |
Scanner sc = 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
package com.oop.ex; | |
import java.util.Scanner; | |
public class Run { | |
public static void main(String[] args) { | |
Scanner sc = new Scanner(System.in); | |
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
package com.oop.ex; | |
import java.util.Scanner; | |
public class Run { | |
public static void main(String[] args) { | |
Scanner sc = new Scanner(System.in); | |
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
package com.oop.example; | |
public class Person { | |
private int number; | |
private String name; | |
private String contact; | |
public Person() {} | |
public Person(int number, String name, String contact) { |
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 Quiz04_Customer { | |
public static void getCustomer(String name) { | |
System.out.println(name + "님 어서오세요! \n"); | |
} | |
public static void getCustomer(int num) { |
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.Arrays; | |
import java.util.Scanner; | |
public class Quiz03_Venezia { | |
public static void main(String[] args) { | |
// 한컴타자연습 - 산성비 | |
// 게임을 시작한 순간부터 종료된 순간까지 시간을 잼 | |
Scanner sc = new Scanner(System.in); | |
String[] arr = { "마부위침", "흘깃흘깃", "부서지다", "싱글벙글", "귀모토각", "사흘돌이", "반근착절", "바람언덕", "백전백승" }; | |
String[] arr2 = {"","","","","","","","",""}; |
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.Arrays; | |
import java.util.Scanner; | |
public class Quiz03_Venezia { | |
public static void main(String[] args) { | |
// 한컴타자연습 - 산성비 | |
// 게임을 시작한 순간부터 종료된 순간까지 시간을 잼 | |
Scanner sc = new Scanner(System.in); | |
String[] arr = { "마부위침", "흘깃흘깃", "부서지다", "싱글벙글", "귀모토각", "사흘돌이", "반근착절", "바람언덕", "백전백승" }; | |
String[] arr2 = {"","","","","","","","",""}; |
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 Quiz03_Venezia { | |
public static void main(String[] args) { | |
// 한컴타자연습 - 산성비 | |
// 게임을 시작한 순간부터 종료된 순간까지 시간을 잼 | |
Scanner sc = new Scanner(System.in); | |
String[] arr = { "마부위침", "흘깃흘깃", "부서지다", "싱글벙글", "귀모토각", "사흘돌이", "반근착절", "바람언덕", "백전백승" }; | |
// 화면 출력 |
NewerOlder