C++之pair的简单用法

#include
#include
using namespace std;
int main() {
    pair<char, string>a, b;
    cin >> a.first >> a.second;

    /*
    或者可以这样
    char t;
    string s;
    cvin>>t>>s;
    a={t,s};
    */

    cout << a.first << " : " << a.second << endl;

    system("pause");
    return 0;
}

在这里插入图片描述

你可能感兴趣的:(刷遍蓝桥杯,c/c++知识二次稳固,c++,visual,studio,开发语言)