일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 유비쿼터스
- 1차원배열
- MySQL
- 기본
- Scanner class
- C언어
- 자바
- 하드웨어
- error
- FOR문
- 스캐너클래스
- 배열
- 백준알고리즘
- Spring
- IFELSE
- 스캐너
- 알고리즘
- 자료구조
- 데이터
- 백준
- 반복문
- Scanner
- 함수
- java프로그래밍
- IF문
- 변수
- for
- IF
- 파이썬프로그래밍기초
- java
- Today
- Total
목록전체 글 (93)
정리하고기록하자
백준 - 알고리즘 A/B (1008) 문제 import java.util.*; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); double a,b; a = sc.nextDouble(); b = sc.nextDouble(); System.out.println(a/b); } } 변수 a,b 선언을 해준다. 정수 : 숫자 -2, -1 , 0 , 1 , 2 .... 소수점을 사용하지 않고 숫자를 표현한다. 실수 : 숫자 0.1 , 0.2, 0.3 ... 소수점을 사용하여 숫자를 표현한다. 백준 알고리즘 문제 예제 출력 에서 소수점으로 출력 되어야 하기 때문에 타입을 double 로 추가 ..
백준 - 알고리즘 AxB (10998) 문제 import java.util.*; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int a,b; a = sc.nextInt(); b = sc.nextInt(); System.out.println(a * b); } } 백준 알고리즘 (1000) , (1001) 번 문제와 비슷 하다. 정수 a,b 변수 선언 후 int a,b; a = sc.nextInt(); b = sc.nextInt(); 두 수에 곱을 해준다. System.out.println(a * b);
백준 알고리즘 A-B 문제 import java.util.*; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int a = 3; int b = 2; a = sc.nextInt(); b = sc.nextInt(); System.out.println(a-b); } } 백준 알고리즘(1000) 문제에서 스캐너클래스 공부 후 문제를 읽어봤을때 두 정수 A와 B를 입력받은 다음, A-B를 출력하는 프로그램을 작성하시오. (1000) 문제랑 비슷 한 문제라고 생각이 들었고 변수 a, b 에 3, 2 를 선언 한 뒤 int a = 3; int b = 2; a = sc.nextInt(); b ..
백준 알고리즘 A+B 문제 public class Main { public static void main(String[] args){ int a = 1; int b = 2; System.out.println(a+b); } } 처음 제출한 코드.. 문제에 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. 입력 받은 다음 A+B 를 출력 하는 프로그램을 작성 하시오 를 보고 다시 코드 수정. import java.util.*; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int a,b; a = sc.nextInt(); b = sc.nextInt(); Sy..
백준 알고리즘 개 문제 public class Main { public static void main(String[] args){ System.out.println("|\\_/|"); System.out.println("|q p| /}"); System.out.println("( 0 )\"\"\"\\"); System.out.println("|\"^\"` |"); System.out.println("||_/=\\\\__|"); } } escape (이스케이프 문자) : 문자열 내에서 특수한 기능을 수행하는 문자. \' : 홑따옴표 출력 \" : 쌍따옴표 출력 \n : 줄바꿈 \t : 탭문자 ( 일정한 간격 ) \\ : 역슬래시 출력
백준 알고리즘 고양이 문제 public class Main { public static void main(String[] args){ System.out.print("\ /\"); System.out.print(" ) ( ')"); System.out.print("( / )"); System.out.println(" \(__)|"); } } 처음 제출한 코드.. 에러코드 : illegal escape character escape (이스케이프 문자) : 문자열 내에서 특수한 기능을 수행하는 문자. \' : 홑따옴표 출력 \" : 쌍따옴표 출력 \n : 줄바꿈 \t : 탭문자 ( 일정한 간격 ) \\ : 역슬래시 출력 수정 후 코드 public class Main{ public static void mai..
1. Html - maxlength="20" -> 총 20글자 입력 2. 이벤트 추가! $(document).on("keyup", ".CLASS or #ID", function() { $(this).val( $(this).val().replace(/[^0-9]/g, "").replace(/([0-9]{4})+([0-9]{4})+([0-9]{4})+([0-9]{4})$/,"$1-$2-$3-$4").replace("--", "-")); }); - ".CLASS or #ID" 에는 input 태그에 CLASS 나 ID 를 입력한다. - 숫자 4자리 사이 에 자동 하이픈 추가 이벤트 - ex) xxxx - xxxx - xxxx - xxxx
배열 선언 ( ex : Int[ ] A; , String[ ] B; = 타입[ ] 변수이름; ) ( ex : Int A[ ]; , String B[ ]; = 타입 변수이름[ ]; ) 타입 뒤 or 변수 이름 뒤에 대괄호 [ ] 를 붙힌다. 배열 생성 ( 타입[ ] 변수이름 = new 타입[길이]; ) 1차 배열 선언 ( ex : Int[ ] A = new Int[5]; ) 2차 배열 선언 ( ex : Int[ ][ ] B = new Int[5][5]; )
변수 선언 - 변수를 사용하기 위해서 우선 변수를 선언해야 한다. ( ex : Int year; ) - Int : 변수 타입 ( 변수에 저장될 값이 어떤 타입 인지 지정 하는 것 - year : 변수 이름 ( 변수에 붙힌 이름. 변수가 값을 저장할 수 있는 메모리 공간을 의미 )