Notice
Recent Posts
Recent Comments
Link
목록Find (1)
거의 알고리즘 일기장
c++_ 문자열 찾기_ string.find()
https://codeforces.com/problemset/problem/96/A Problem - 96A - Codeforces codeforces.com 영어 지문 연습겸 코드포스 쉬운문제를 풀다가 발견한 함수다. c++에서 특정 문자열이 있는지 없는지 알아보는데 매우 유용한 함수다. 코드 및 사용법 #include #include #include using namespace std; int main() { string dangerousSituation1 = "1111111"; string dangerousSituation2 = "0000000"; string situation; cin >> situation; //string::npos는 특정문자열이 안에 없을때 반환하는 값 (지멋대로의 수임)이고..
c++ 문법
2020. 5. 2. 14:12