#30138: 解題報告


10855081@stu.tshs.tp.edu.tw (九孝26林孟希)

學校 : 不指定學校
編號 : 188623
來源 : [36.225.139.25]
最後登入時間 :
2022-05-04 14:28:32
a009. 解碼器 -- ACM 458 | From: [36.225.117.126] | 發表日期 : 2022-05-01 10:07

解題報告

 

#include <iostream>
#include <string>
using namespace std;
int main(void)
{
    string x;
    getline(cin, x);
    for (int i = 0; i < x.length(); i++)
    {

      char n = x[i];
      n = n - 7;
      cout << n;

    }
    return 0;
}

 
ZeroJudge Forum