일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 안드로이드
- 웹개발
- html
- 웹개발자
- job
- servlet
- two pointers
- Programming
- Java
- MSA
- CSS
- BCIT
- vite
- Spring MVC
- MVC패턴
- 밤비노
- 데이터베이스
- react
- jsp
- Doit알고리즘코딩테스트
- DB
- sql
- SpringFramework
- coding test
- mysql
- Bambino
- 자바
- spring boot
- MVC
- 웹개발기초
- 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..