第一次發問><,還請多指教
排版的話老實說我不大會用,所以附上ideone網站上我打的code(跟上面一樣就是了,但看起來比較ok)
錯誤訊息為:
第 1 測資點(100%): WA (line:1)
答案不正確
您的答案為: 14682165 正確答案為: 146821
#include <stdio.h>
#include <stdlib.h>
int main()
{
char buf[9999];
int input;
int distance;
char *ptr, *qtr;
while ( fgets( buf, sizeof(buf), stdin)!=NULL ) {
ptr=buf;
qtr=ptr+1;
while ( *(qtr)!='\n' ) {
distance=( *qtr-'A' ) - ( *ptr-'A');
if( distance>=0 ) {
printf("%d", distance);
}
else {
printf("%d", -distance);
}
qtr++;
ptr++;
}
printf("\n");
}
}