#44506: 原來char也能用陣列呀! (C++)


yp11351280@yphs.tp.edu.tw (710-43)

學校 : 臺北市私立延平高級中學
編號 : 276272
來源 : [203.72.178.1]
最後登入時間 :
2024-12-10 17:54:13
a065. 提款卡密碼 -- 板橋高中教學題 | From: [203.72.178.1] | 發表日期 : 2024-12-12 17:12

#include<iostream>
#include<cmath>
using namespace std;
int main(){
    char s[7+1];
    while(cin>>s){
        for(int i=0; i<6;i++) cout<<abs(s[i]-s[i+1]);
        cout<<endl;
    }
}

 
ZeroJudge Forum