string用scanf读入printf输出(节省时间)

#include <iostream>
#include <stdio.h>
#include <string.h>
using namespace std;
int main()
{
string a;
a.resize(); //需要预先分配空间
scanf("%s", &a[]);
printf("%s\n", a.c_str());
return ;
}
上一篇:codeforces 597B Restaurant


下一篇:20145337 GDB调试汇编堆栈过程分析