728x90
● [문제번호 2743] 단어 길이 재기
https://www.acmicpc.net/problem/2743
● 알아야 할 것
: string 메소드
● 풀이 과정
: 문자열 입력 후 string 메소드를 활용하여 쉽게 출력한다.
● 주의 할 것
: NULL
● 참고 할 것
: NULL
● 풀이 코드
#include <bits/stdc++.h>
using namespace std;
string str;
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
// 문자열 입력
cin >> str;
// 문자열 길이 출력
cout << str.length();
return 0;
}
● [백준] - [알고리즘 기초 1/2] - [203 - 자료구조 1 (참고)] 문제집
번호 | 문제 번호 | 문제 이름 | 풀이 링크 |
1 | 1935 | 후위 표기식2 | https://pirateturtle.tistory.com/170 |
2 | 1918 | 후위 표기식 | https://pirateturtle.tistory.com/171 |
3 | 10808 | 알파벳 개수 | https://pirateturtle.tistory.com/172 |
4 | 10809 | 알파벳 찾기 | https://pirateturtle.tistory.com/173 |
5 | 10820 | 문자열 분석 | https://pirateturtle.tistory.com/174 |
6 | 2743 | 단어 길이 재기 | https://pirateturtle.tistory.com/175 |
7 | 11655 | ROT13 | https://pirateturtle.tistory.com/176 |
8 | 10824 | 네 수 | https://pirateturtle.tistory.com/177 |
9 | 11656 | 접미사 배열 | https://pirateturtle.tistory.com/178 |
728x90
'Baekjoon > [Code.plus] 알고리즘 기초 1/2' 카테고리의 다른 글
[BOJ/백준] 11656 접미사 배열 (0) | 2021.07.27 |
---|---|
[BOJ/백준] 10824 네 수 (0) | 2021.07.27 |
[BOJ/백준] 11655 ROT13 (0) | 2021.07.27 |
[BOJ/백준] 10820 문자열 분석 (0) | 2021.07.27 |
[BOJ/백준] 10809 알파벳 찾기 (0) | 2021.07.27 |
[BOJ/백준] 10808 알파벳 개수 (0) | 2021.07.27 |
[BOJ/백준] 1918 후위 표기식 (0) | 2021.07.27 |
댓글