欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

P1914 小书童——密码

程序员文章站 2022-07-13 11:58:33
...

P1914	小书童——密码

AC代码:

#include<bits/stdc++.h>

using namespace std;

int main(){
	string s;
	int n;
	cin >> n;
	cin >> s;
	for(int i=0; i<s.length(); i++){
		int temp = s[i];
		temp += n;
		if(temp >= 123){
			printf("%c", temp-26);  // 处理大于 'z'
		}
		else{
			printf("%c", temp);			
		}
	} 
	return 0;
}
相关标签: 洛谷 循环 c++