package prj190702; class Car{ String color; String gearType; int door; Car(){ } //기본 생성자 Car(String color, String gearType, int door){ //파라미터가 있는 생성자. this.color = color; //보통은 이렇게 쓴다. 매개변수 이름은 동일하게, this. 으로 객체의 주소를 지정한다. this.gearType = gearType; this.door = door; } } public class Classtest_2 { public static void main(String[] args) { Car c1 = new Car(); c1.color = "white"; c1.gearType = "auto..
package prj190701; import java.util.*; public class prj0701_1 { public static void main(String[] args) { String[] name = new String[10]; char[] grade = new char[10]; int[] scoreKOR = new int[10]; int[] scoreMAT= new int[10]; int[] scoreENG = new int[10]; int[] scoreSCI = new int[10]; int[] scoreTotal = new int[10]; float[] scoreAVG = new float[10]; char menuChoice; Scanner scan = new Scanner(Sys..
package prj190701; import java.util.*; public class prj0701_1 { public static void main(String[] args) { String name = "AR"; char grade = 'B'; int scoreKOR = 90; int scoreMAT=75; int scoreENG = 80; int scoreSCI = 60; int scoreTotal = 0; float scoreAVG = 0.0f; char menuChoice ; Scanner scan = new Scanner(System.in); do { //메뉴출력 System.out.printf("****성적 관리 프로그램****\n"); System.out.printf("\n"); S..
- Total
- Today
- Yesterday
- ''찾기
- spring error #
- select제어
- 정규식
- 정규식 숫자만
- 엑셀다운로드
- jQuery
- poi
- 정규식 특수문자
- 인텔리제이
- spring 엑셀
- Regex
- 계좌번호정규식
- poi 엑셀
- no getter for property named
- JSON날짜
- 이메일 정규식
- Failed to load resource: the server responded with a status of 404 (Not Found)
- 공백찾기
- IntelliJ #gradle #tomcat #spring #springmvc
- JSON파싱
- POI EXCEL
- Spring
- PageNotFound - No mapping for GET
- selectbox
- js
- JSON
- SpringXmlModelInspection
- mybatis
- 정규식 한글만
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |