코드포스71A
-
<codeforces> 71A - Way Too Long WordsLanguage/C, C++ 2021. 10. 25. 02:00
문제 https://codeforces.com/problemset/problem/71/A Problem - 71A - Codeforces codeforces.com 풀이 입력받은 문자의 길이가 n과 같거나 작을때 문자를 그대로 출력하고 n보다 클 경우 첫글자와 마지막 글자는 그대로 두고 사이 글자의 수를 출력해야한다. (예시) n = 4 word 입력 -> word 출력 w123456d 입력 -> w6d 출력 string메소드를 사용하며, string 클래스에 정의된 문자열 처리 함수 중 길이와 관련된 length()메소드를 사용하여 문제를 해결 C++ #include using namespace std; int main() { int n; string str; cin >> n; while (n--) {..