P1079 [NOIP2012 提高组] Vigenère 密码 [模拟]
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P1079 [NOIP2012 提高组] Vigenère 密码 [模拟]相关的知识,希望对你有一定的参考价值。
https://www.luogu.com.cn/problem/P1079
#include<cstdio>
#include<iostream>
#include<string>
#include<cstring>
using namespace std;
int main(void)
{
string s,key; cin>>key>>s;
int k=0;
for(int i=0;i<s.size();i++)
{
int temp=toupper(s[i])-'A'-(toupper(key[k++])-'A');
temp=(temp+26)%26;
if(k==key.size()) k=0;
if(s[i]>='a')
cout<<char('a'+temp);
else cout<<char('A'+temp);
}
return 0;
}
以上是关于P1079 [NOIP2012 提高组] Vigenère 密码 [模拟]的主要内容,如果未能解决你的问题,请参考以下文章