为什么printf输出不了string类型,例如:
#include<bits/stdc++.h> using namespace std; int main(){ string a; cin>>a; printf("%s",a); return 0; }
那位大佬能告诉我一下为什么