Banner

My Tech Blog (๊ฐ€์šด๋ฐ)

์˜ค๋Š˜์˜ ๋ช…์–ธ
" ์„ฑ๊ณต์ด๋ž€ ์ž์‹ ์ด ์ง„์ •์œผ๋กœ ์ข‹์•„ํ•˜๋Š” ์ผ์„ ํ•˜๋ฉด์„œ ๋ˆ„๋ฆฌ๋Š” ํ–‰๋ณต์ด๋‹ค. "
- ์˜คํ”„๋ผ ์œˆํ”„๋ฆฌ (๋ฏธ๊ตญ ๋ฐฉ์†ก์ธ, ์ž์„ ๊ฐ€)
โœ… ๋ฌธ์ œโœ… ์ฝ”๋“œpublic class bonus02 { public static void main(String[] args) { System.out.println(getMiddle("123456789")); } public static String getMiddle(String wrd) { int center = wrd.length() / 2 + 1; String result; if (wrd.length() % 2 == 0) { result = wrd.substring(center - 2, center); } else { result = wrd.substring(center - 1, center); } return result; }} 1. getMiddle ๋ฉ”์†Œ๋“œ๋Š” ๋ฌธ์ž์—ด์„ ์ž…๋ ฅ์œผ๋กœ ..
์ƒ๋‹จ์œผ๋กœ