#11781: 怎麼改阿


angeliimgoddess (hellosi)


#include<iostream>
#include<string>

using namespace std;

int main()
{
string a;
while (getline(cin,a))
{
for (int i = 0; a.size() != '\0'; i++)
{
a[i] -= 7;
cout << a[i];
}
cout << endl;
}
system("pause");
}