일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- blind sql injection
- lord of sql injection
- xss game
- 함수
- 사칙연산
- Pwndbg
- document
- 객체
- 메소드
- suninatas 풀이
- sql injection
- 김성엽 대표님
- 배열
- 백준 파이썬
- property
- htmlspecialchars
- burp suite
- jQuery
- 백준 알고리즘
- 조건문
- element 조회
- xss game 풀이
- window
- 포인터
- 파이썬
- 자바스크립트
- github
- object
- python
- IF문
Archives
- Today
- Total
power-girl0-0
[ C++ ] vector을 활용한 예제 본문
728x90
조건 :
- 5개의 이름을 입력받아온다.
- 입력받아온 이름 중, 삭제할 이름을 입력받는다.
- 입력받은 삭제의 대상을 삭제하고, 남은 이름을 출력한다.
- c++의 vector를 활용하여 작성해야 한다.
- 입력받은 삭제의 대상을 find()를 활용해 대상을 찾은 후, 이를 이용하여 삭제해야 한다.
- 남은 이름을 출력할 때에는 iterator를 사용해야 한다.
소스코드 :
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main(){
string name;
string search;
vector <string> v;
vector <string>::iterator it;
for(int i=0; i<5; i++){
cout<<"이름 : ";
cin>>name;
v.push_back(name);
}
cout<<endl;
cout<<"삭제 ?";
cin>>search;
it=find(v.begin(),v.end(),search);
it=v.erase(it);
for(it=v.begin(); it!=v.end(); it++){
cout<<*it<<" ";
}
return 0;
}
결과 :
728x90
'언어 > C++' 카테고리의 다른 글
[ C++ ] 피보나치수열 (0) | 2021.06.02 |
---|---|
[ C++ ] 함수 중복 (0) | 2021.05.04 |
[ C++ ] 헹맨 게임 (0) | 2021.04.13 |
[ C++ ] find를 활용하여, 문자 찾기 (0) | 2021.04.13 |
[ C++ ] 동적할당을 이용하여 원의 면적과 둘레 구하기 (0) | 2021.04.06 |
Comments