#10529:


40242075s (ntnu_xpeke)

學校 : 國立臺灣師範大學
編號 : 54002
來源 : [1.162.52.63]
最後登入時間 :
2019-12-18 05:11:49
a065. 提款卡密碼 -- 板橋高中教學題 | From: [1.162.62.86] | 發表日期 : 2015-12-07 19:01

#include<stdio.h>

#include <stdlib.h>

int main(){

int i,temp,password;

char str[8]={0};

 

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

 

for(i=0;i<6;i++){      //這邊要小心 i 的邊界

 

temp=(int)str[i]-(int)str[i+1];

password=abs(temp);

printf("%d",password);

 

}printf("\n");

 

}

 

 

}

 
ZeroJudge Forum