題目連結: https://zerojudge.tw/ShowProblem?problemid=a065

# 解題思路

就是兩個的差取絕對值,應該沒困難吧??

# 程式碼

#include <iostream>
#include <cmath>
using namespace std;
int main(){
    string s;
    while(cin>>s){
        for(int i=0;i<s.length()-1;i++)
            cout<<abs(s[i+1]-s[i]);
        cout<<endl;
    }
}
更新於 閱讀次數

用實際行動犒賞爆肝的我😀

Zrn Ye LinePay

LinePay