리본 메뉴를 사용하고 있음 리본메뉴를 최소화 해 사용하지 않고 있음
인터넷 보호나라(KISA)에서 내 PC 돌보미 서비스를 제공합니다. 운영체제 및 S/W 보안 업데이트 백신 설치 및 치료 해킹 프로그램 유무 점검/조치 미사용 Active X 제거 안전한…
#include <iostream> //cin, cout #include <utility> #include <vector> //vector #include <algorithm> //sort using namespace std; bool comp(const pair<int, string>&a, const pair<int, string>&b) { if(a.first ==…
#include <iostream> #include <utility> #include <vector> #include <algorithm> using namespace std; int main() { vector<pair<int, string>> p; int n, no; string name; cin >> n;…
#include<iostream> #include<vector> using namespace std; int main() { vector<int> p; int tmp; for(int i=0;i<10;i++) { cin >> tmp; p.push_back(tmp); } vector<int>::iterator i; for(i=p.begin(); i<p.end(); i++)…
#include<iostream> #include<vector> #include<algorithm> using namespace std; int main() { vector<int> a; int n, x; cin >> n; for(int i=0; i<n; i++) //입력 받고 push하기 {…
C++에서 문자를 입력 받기 위해 string strId; cin >> strId; 명령을 사용하면 띄어쓰기로 구분된 문장을 입력 받지 못한다.(아래 예시) 아래와 같이 getline(cin, strId); 와 같이…
워드프레스에 오신 것을 환영합니다. 이것은 첫 게시물입니다. 수정하거나 삭제하고 글쓰기를 시작하세요!