파일에서 한글자씩 읽기 파일에서 한줄씩 읽기 https://en.cppreference.com/w/cpp/io/basic_ifstream
#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); 와 같이…