#19379: a009 anwser AC


joe951007 (10842510)

學校 : 臺北市私立延平高級中學
編號 : 102958
來源 : [163.21.208.192]
最後登入時間 :
2023-02-13 13:52:23
a009. 解碼器 -- ACM 458 | From: [118.167.14.79] | 發表日期 : 2019-09-28 17:52

 #include<iostream>
#include<stdlib.h>
using namespace std;
int main()
{
string s;
while(getline(cin,s))
{
for(int i=0; i<s.size(); i++)
{
char c=s[i]-7;
cout << c ;
}
cout << endl ;
}
("pause");
}

 

要小心這裡不能用system

以上!

 
ZeroJudge Forum