#21338: C++寫法


36563120 (雨)

學校 : 國立彰化師範大學
編號 : 121990
來源 : [120.107.188.16]
最後登入時間 :
2020-06-26 03:42:56
a009. 解碼器 -- ACM 458 | From: [120.107.188.16] | 發表日期 : 2020-05-18 22:01

#include <bits/stdc++.h>

using namespace std;

int main()

{

    string input;

    while(cin>>input)

    {

        for(int i=0;i<input.length();i++)

            cout<<char(input[i]-7);

        cout<<endl;

    }

    return 0;

}

 
ZeroJudge Forum