package prj190703; import java.util.*; class Dog1{ private double Leg; // private 설정하고 마우스 오른쪽 클릭->Source ->Generate getter, setter있음;; private int Head; ////setter///////setter (save, write) //규칙 public void setLeg(double leg) { Leg = leg; } public void setHead(int head) { Head = head; } ////getter//// getter+데이터변수첫글자 대문자 spring 할때는 자동변환 해준다. set대문자 , get대문자//getter (read) public double getLeg(..
package prj190702; import java.util.*; public class array_1 { public static void main(String[] args) { char a = '1'; //int math = 90; //int eng = 96; //int kor = 94; //int sci = 99; int[] sub = {90,80,70,90,90}; int sum = 0; float avg = 0.0f; char grade = ' '; System.out.print("메뉴입력>>"); Scanner scan = new Scanner(System.in); a = scan.next().charAt(0); switch(a) { case '1' : //grade = calculateG..
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..
/////////////두 개의 수를 입력받고 첫번째 수가 짝수 이면 두 수를 더하고 아니면 error System.out.print("첫번째 수를 입력>>"); Scanner scan = new Scanner(System.in); String tmp = scan.nextLine(); int num1 = Integer.parseInt(tmp); System.out.print("두번째 수를 입력>>"); String tmp1 = scan.nextLine(); int num2 = Integer.parseInt(tmp1); if(num1 %2 ==0 ) { int sum = num1+num2; System.out.println(sum); }else if(num1%2 ==1) System.out.println(..
package prj190628; import java.util.*; public class test_1 { public static void main(String[] args) { // TODO Auto-generated method stub System.out.print("첫번째 숫자 입력하세요>>>>>>>>"); Scanner scan = new Scanner(System.in); //입력받을 scan 생성 String tmp = scan.nextLine(); // tmp 생성 int first_num = Integer.parseInt(tmp); //처음 숫자 저장 int second_num = 0; //두번째 숫자 변수 초기에 생성 char op =' '; //연산자 변수 초기 생성 ///////..
- Total
- Today
- Yesterday
- ''찾기
- 계좌번호정규식
- 인텔리제이
- poi
- spring 엑셀
- Regex
- Failed to load resource: the server responded with a status of 404 (Not Found)
- mybatis
- 이메일 정규식
- js
- Spring
- poi 엑셀
- spring error #
- JSON파싱
- selectbox
- IntelliJ #gradle #tomcat #spring #springmvc
- SpringXmlModelInspection
- select제어
- JSON날짜
- jQuery
- 정규식
- no getter for property named
- JSON
- 정규식 숫자만
- PageNotFound - No mapping for GET
- 엑셀다운로드
- 공백찾기
- POI EXCEL
- 정규식 특수문자
- 정규식 한글만
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |