백준 알고리즘 2743번: 단어 길이 재기 - JAVA https://www.acmicpc.net/problem/2743 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String str = sc.next(); System.out.println(str.length()); }}Colored by Color Scriptercs 알고리즘 2024.04.27