| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 서버 모니터링
- Doit알고리즘코딩테스트
- sql
- 모니터링
- 웹개발자
- react
- Spring MVC
- DB
- two pointers
- vite
- MSA
- 데이터베이스
- SpringFramework
- servlet
- coding test
- Java
- 자바
- Bambino
- spring boot
- BCIT
- MVC
- CSS
- mysql
- Programming
- MVC패턴
- html
- job
- 웹개발기초
- jsp
- 웹개발
- Today
- Total
목록Programming (3)
초보 개발자의 기록
Variables Variables are containers for storing data vaules. int: Stores integers without decimals float: Stores floating point numbers with decimals char: Stores single characters. Char values are surrounded by single quotes Declaring (Creating) Variables To create a variable,specify the type and assign it a value type variableName = value; The equal sign is used to assign a value to the variabl..
#include header file library. Header files add functionality to C programs White space C ignores white space. multiple lines makes the code more readable. main() main() is called a function. Any code inside its curly brackets {} will be executed Esxape sequence New lines \n It forces the cursor to change its positio to the beginning of the next line on the screen. To insert a new line, use the \..
You are given two strings word1 and word2. Merge the strings by adding letters in alternating order, starting with word1. If a string is longer than the other, append the additional letters onto the end of the merged string. Return the merged string. Example 1: Input: word1 = "abc", word2 = "pqr" Output: "apbqcr" Explanation: The merged string will be merged as so: word1: a b c word2: p q r merg..
