2743 단어 길이 재기 xxxx 0001-01-01 35 words One minute Contents 풀이: 코드: https://www.acmicpc.net/problem/2743 풀이: 단어의 길이를 출력 코드: 1 2 3 4 5 6 7 8 #include <iostream> #include <string> using namespace std; int main(void) { string a; cin >> a; cout << a.length() << endl; } Please enable JavaScript to view the comments powered by Disqus.