UVa 458 - The Decoder

题目又臭又长,其实就一句话: 把输入的字符串的每个符的ASCII - 7 后输出。

这题就看英文有点难,写起来就像hello,world

代码如下

 

#include<iostream>
using namespace std;
int main()
{
	string s;
	while(cin>>s)
	{		
		for(int i=0; i<s.size(); i++)
			s[i] -= 7;
		cout << s << endl;
	}
	return 0;
}

你可能感兴趣的:(UVa 458 - The Decoder)