#14972: c answer


blackconqueror (boweichen)

學校 : 國立臺南第一高級中學
編號 : 58182
來源 : [220.132.250.41]
最後登入時間 :
2020-06-01 10:17:42
a065. 提款卡密碼 -- 板橋高中教學題 | From: [220.132.250.41] | 發表日期 : 2018-08-24 16:30

 

#include <stdio.h>

#include <stdlib.h>

#include <math.h>

#include <string.h>

#include <ctype.h>

 

int main(int argc, const char * argv[]) {

    char S[8];

    int i;

    while(scanf("%s",S)!=EOF){

        for(i=0;i<6;i++){

            printf("%d",abs(S[i]-S[i+1]));

        }

        printf("\n");

    }

    return 0;

}

 

 
ZeroJudge Forum