轉成數值必須經過ASCII碼的換算。
2.判斷11的倍數:偶數位和與奇數位和之差需要是11的倍數。
3.判斷N是否為0,必須判斷N[0]=='0'和N[1]=='\0',不然會WA。
[C](0.016)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<string.h> | |
#include<math.h> | |
int main() | |
{ | |
char N[1005]; | |
while( gets(N) && !(N[0] == '0' && N[1] == '\0') ) | |
{ | |
int odd = 0, even = 0, i; | |
int N_length = strlen(N); | |
for( i = 0 ; i < N_length ; i++ ) | |
if( i % 2 ) | |
odd += N[i] - '0'; | |
else | |
even += N[i] - '0'; | |
if( !(abs(odd - even) % 11 ) ) | |
printf( "%s is a multiple of 11.\n", N ); | |
else | |
printf( "%s is not a multiple of 11.\n", N ); | |
} | |
return 0; | |
} |
0 意見:
張貼留言