标签:style ring size ++ color cout code xss turn
#include "stdafx.h" #include "iostream" using namespace std; #include "string" char a[26]={‘d‘,‘l‘,‘r‘,‘y‘,‘v‘,‘o‘,‘h‘,‘e‘,‘z‘,‘x‘,‘w‘,‘p‘,‘t‘,‘b‘,‘g‘,‘f‘,‘j‘,‘q‘,‘n‘,‘m‘,‘u‘,‘s‘,‘k‘,‘a‘,‘c‘,‘i‘};//代换表 void fuc(string s) { for(int i=0;i<s.size();i++) s[i]=a[s[i]-65]; cout<<s<<endl; } int _tmain(int argc, _TCHAR* argv[]) { string s="MGZVYZLGHCMHJMYXSSFMNHAHYCDLMHA"; fuc(s); return 0; }
标签:style ring size ++ color cout code xss turn
原文地址:https://www.cnblogs.com/butchert/p/12550022.html