本文共 368 字,大约阅读时间需要 1 分钟。
水题一道,SOLVED只是次数的问题。map一下,就是很easy啦。
#include #include #include #include using namespace std;char tmp[5000];int main(){ string str=" `1234567890-=QWERTYUIOP[]\\ASDFGHJKL;'ZXCVBNM,./"; map n; int i; n[' ']=' '; for(i=1;i
转载于:https://www.cnblogs.com/dengyaolong/p/3697229.html