8 like 0 dislike
5.2k views
若一個正整數的奇數位數字和與偶數位數字和兩者差的絕對值是11的倍數,則這個正整數就是11的倍數,否則就不是11的倍數。

請寫一個程式來判斷輸入的數是不是十一的倍數。

 

輸入說明:

會輸入一個正整數N,N不會超過1000位。

 

輸出說明:

如果輸入的數字是11的倍數就在螢幕上輸出YES,否則就輸出NO。

 

輸入範例:

11111111111111111111111111111111111111111111111111

 

輸出範例:

YES
[Exam] asked in 2017-1 程式設計(一)AD by (18k points)
ID: 36178 - Available when: 2017-12-08 18:30 - Due to: Unlimited
| 5.2k views

19 Answers

0 like 0 dislike
Hidden content!
#include<stdio.h>
int main()
{
* * * ** ** * * *** * * * * * * i;
********* * * * * * ** ** * a,b;
     int N[1000];
    
     scanf("%s", N);
     
** *** ***** ** * ** * (i=0; i<=1000; i=i+2)
     {
* * * *** * *** *** * * ** * * * **
** *** * * * * ***** * * * *** * ** ** * * * * ** = a+N[i]; * *** * *** * **** *** * * * ** * ** * *
     }
     
** ** * **** *** * * ***** * (i=1; i<=1000; i=i+2)
* * * ** **** * **** **
*** * ** ** ** *** * ***** * * * * ** * = b+N[i];
     }
     
* *** * *** ** * * * ** (a>b)
     {
* ** ** * * * * * ** * ** * * * * *** * * ((a-b)%11==0)
* * * * * * *** **** * ** * **** ** *** * ***
* * ** **** * ** * ** * **** * * ** * *** *** * ***** * ** *** * * **
* ** * * ****** *** * * ** ** ** ** ** * *
* *** **** ** ** * * * ** * *** * * ***** ** ** * **
*** *** * * ** ** ** * ** ***** * ** * *** * *** ** **
** *** *** * ** **** ** * ** *** * * * * * ** ** ****** ** ***** ** **** * * ******* * ** *
* * ** * **** * ** ** * **** * *** ** * ** **
* * * * * ** ************ **** ***
******* * ** *** * * **** * ** * * * ** if (a<b)
     {
* *** * * * ****** * * * ** ** * ** * *** * ** ((b-a)%11==0)
*** * ** ** **** * * * ******* * ** ** ** * * * *
** *** ** *** * * * * ** ****** * * * *** ** * * * * *** * ** * ** * * *
* *** * * * ***** *** * *** * *** * **** *** **
* ** *** *** ***** ** * **** * ** * * ** **** **
* ** * ** ***** **** * *** * * * ** ** * **
** * * * *** * * ** * * ** * ***** *** ** * ** ** * ****** **** * * ** * * * * ** * * * **
* * *** *** * **** * * *** **** * * * * ** * * *
* * ** * *** **** * * *** *
** * * ** * * ** * *** * ** **** if (a=b)
* * ** ** * ** * ** ** ** ****
** ****** * * * * * ** * *** * * ** * *** ** ** ** * ** ******* *** ***
* * ** * *** **** * * * ***** ***
* * *** ** * ** * *** * ** * * *
* ** *** * **** ** ** * **** *** * *** *** **** * **
***** * * ***** * * * * * * ** 0;
* *** * * ** ** * * **** * *** **
}
* * * * * ** ***** * * * ******* * *** * * *
answered by (202 points)
0 0
prog.c: In function 'main':
prog.c:8:11: warning: format '%s' expects argument of type 'char *', but argument 2 has type 'int *' [-Wformat=]
   scanf("%s", N);
           ^
prog.c:48:7: warning: implicit declaration of function 'system' [-Wimplicit-function-declaration]
       system("pause");
       ^~~~~~
0 0
prog.c: In function 'main':
prog.c:8:11: warning: format '%s' expects argument of type 'char *', but argument 2 has type 'int *' [-Wformat=]
   scanf("%s", N);
           ^
prog.c:48:7: warning: implicit declaration of function 'system' [-Wimplicit-function-declaration]
       system("pause");
       ^~~~~~
0 like 0 dislike
Hidden content!
#include <stdio.h>

int main()
{
*** * * ** ** *** * * long long n;
* * * * ***** * * * * * ****** * ** *** *** *** ** **
    {
** *** *** *** * ** * ** * * * **
* ** * * ******* ********* *** * ** * * * **** * * * * * * * ** * * **
* *** * * ** *****

* * ** * *** *** * * 0;
}
answered by (114 points)
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
Case 3: Wrong output
0 like 0 dislike
Hidden content!
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
***** * **** * * * * * *** input[10000];
** * * ***** *** * * ***** **** ** ** ******
    {
* * ***** * * ** ** ** ** * ** i,l=strlen(input),a=0,b=0;
* *** ** * * * *** * * *** ** * * ***** ** * ***
** * **** * * * * **** * * *** *** * ** **** *
*** ** * * *** * *** * * * ** *** *** * *
* *** * * ** * * *** * * * ** ****** * ** **** * *
** *** ** *** ** ** *** * * * * ** * **** ******* **** **
** *** ** * * * * * ** ** ** *** *** * ** * *** * * * * * ** *** **
** * ** * * ** * * *** *** ** * * *** ** *
*** * ** * * ** **** ** ** **** *** * * * ** * * *** *** ** * ***** * * * * **
    }
* *** * **** ** *** * 0;
}
answered by (30k points)
edited by
0 0
prog.c: In function 'main':
prog.c:7:19: warning: format '%s' expects argument of type 'char *', but argument 2 has type 'char (*)[10000]' [-Wformat=]
     while(scanf("%s",&input)!=EOF)
                   ^
prog.c:14:12: warning: implicit declaration of function 'abs' [-Wimplicit-function-declaration]
         if(abs(a-b)%11==0)
            ^~~
0 0
prog.c: In function 'main':
prog.c:14:12: warning: implicit declaration of function 'abs' [-Wimplicit-function-declaration]
         if(abs(a-b)%11==0)
            ^~~
0 0
prog.c: In function 'main':
prog.c:14:12: warning: implicit declaration of function 'abs' [-Wimplicit-function-declaration]
        ans=abs(a-b);
            ^~~
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
Case 3: Correct output
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
Case 3: Correct output
0 0
prog.c: In function 'main':
prog.c:13:12: warning: implicit declaration of function 'abs' [-Wimplicit-function-declaration]
         if(abs(a-b)%11==0)
            ^~~
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
Case 3: Correct output
0 like 0 dislike
Hidden content!
#include <stdio.h>
#include <string.h>
int main()
{
* ** * * **** ***** ** ** i,j,add=0,even=0;
** * ***** * * * **** a[1000]={0};
* * * * * ** * ** *** ********** **** *






* *** * * * ** ** * * * * ** *
    {
** * **** **** * * * * * * * * * * ** * **** * *
* * * ** ** ** * **** * * * * * *
***** ** * ** * ** *** * **** **** ***

* ** *** *****

***** * ***** * * ** ** ** * * * ** ** * *
    {
* ** ** * ** * **** **** *** * *** * **** * * *** *** )
* * **** * ****** *** ** *** * *** *** *** *
*** ** * ** ** ** * * *** * *** * **** *

    }

* * ******* ** * * * **

* * * * ** **** *** ** * ***** ** * ** ** * * ** * * **

* * * * * * * * ***** * if((add-even)%11==0)
* * * * * ** * ** * * * * * * ** **** * *
** * * *** ** ** * *** **
* ** * ***** **** * ** *** ** * * * * * * **** ** * * * ****


* * * * * * * *** * * 0;
}
answered by (174 points)
edited by
0 0
Show more...
0 0
prog.c: In function 'main':
prog.c:6:12: warning: zero-length gnu_printf format string [-Wformat-zero-length]
     printf("");
            ^~
prog.c:7:5: warning: 'gets' is deprecated [-Wdeprecated-declarations]
     gets(a);
     ^~~~
In file included from prog.c:1:0:
/usr/include/stdio.h:640:14: note: declared here
 extern char *gets (char *__s) __wur __attribute_deprecated__;
              ^~~~
prog.c:14:16: warning: implicit declaration of function 'strlen' [-Wimplicit-function-declaration]
     for(i=0;i<=strlen(a);i=i+2)
                ^~~~~~
prog.c:14:16: warning: incompatible implicit declaration of built-in function 'strlen'
prog.c:14:16: note: include '<string.h>' or provide a declaration of 'strlen'
prog.c:22:17: warning: incompatible implicit declaration of built-in function 'strlen'
      for(i=1;i<=strlen(a);i=i+2)
                 ^~~~~~
prog.c:22:17: note: include '<string.h>' or provide a declaration of 'strlen'
/tmp/ccEDkE9I.o: In function `main':
prog.c:(.text+0x51): warning: the `gets' function is dangerous and should not be used.
0 0
prog.c: In function 'main':
prog.c:6:12: warning: zero-length gnu_printf format string [-Wformat-zero-length]
     printf("");
            ^~
prog.c:7:5: warning: 'gets' is deprecated [-Wdeprecated-declarations]
     gets(a);
     ^~~~
In file included from prog.c:1:0:
/usr/include/stdio.h:640:14: note: declared here
 extern char *gets (char *__s) __wur __attribute_deprecated__;
              ^~~~
prog.c:14:16: warning: implicit declaration of function 'strlen' [-Wimplicit-function-declaration]
     for(i=0;i<=strlen(a);i=i+2)
                ^~~~~~
prog.c:14:16: warning: incompatible implicit declaration of built-in function 'strlen'
prog.c:14:16: note: include '<string.h>' or provide a declaration of 'strlen'
prog.c:22:17: warning: incompatible implicit declaration of built-in function 'strlen'
      for(i=1;i<=strlen(a);i=i+2)
                 ^~~~~~
prog.c:22:17: note: include '<string.h>' or provide a declaration of 'strlen'
/tmp/ccuq6Kb5.o: In function `main':
prog.c:(.text+0x51): warning: the `gets' function is dangerous and should not be used.
0 0
prog.c: In function 'main':
prog.c:6:13: warning: format '%s' expects argument of type 'char *', but argument 2 has type 'char (*)[1000]' [-Wformat=]
     scanf("%s",&a);
             ^
prog.c:13:16: warning: implicit declaration of function 'strlen' [-Wimplicit-function-declaration]
     for(i=0;i<=strlen(a);i=i+2)
                ^~~~~~
prog.c:13:16: warning: incompatible implicit declaration of built-in function 'strlen'
prog.c:13:16: note: include '<string.h>' or provide a declaration of 'strlen'
prog.c:21:17: warning: incompatible implicit declaration of built-in function 'strlen'
      for(i=1;i<=strlen(a);i=i+2)
                 ^~~~~~
prog.c:21:17: note: include '<string.h>' or provide a declaration of 'strlen'
0 0
prog.c: In function 'main':
prog.c:7:13: warning: format '%s' expects argument of type 'char *', but argument 2 has type 'char (*)[1000]' [-Wformat=]
     scanf("%s",&a);
             ^
0 like 0 dislike
Hidden content!
#include<stdio.h>
int main(void)

{
* **** * ***** ** * * num[1000];
* * * * ** ****** ***** i,a,b;
* **** ** * ******
* * * * * **** ** * **** **** ** * a number:");
* * * * * * ** * ******** * = 0; i<1000; i+2)
************** * * *
* * * *** * *** * * += num[i];
* * ** * * *** ***** += num[i*2+1];
* * * ** * ***
* ** ** * * *** **** **
* ** * * *** * ** *** ** * * * * * == 0)
** * ** * ** *** * *** * * * ** *
** *** ** ** ** * * **
* * **** ** *** *** ** * * *
* * *** *** *** * *** ** *** * * ***
** *** * * * * ** *
* * *** ** ** * * 0;
}
answered by (212 points)
0 0
prog.c:1:2: error: invalid preprocessing directive #inlude
 #inlude<stdio.h>
  ^~~~~~
prog.c: In function 'main':
prog.c:8:5: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
     printf("Enter a number:");
     ^~~~~~
prog.c:8:5: warning: incompatible implicit declaration of built-in function 'printf'
prog.c:8:5: note: include '<stdio.h>' or provide a declaration of 'printf'
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
Case 3: Wrong output
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
Case 3: Wrong output
0 like 0 dislike
Hidden content!
#include<stdio.h>
int main()
{
* * ** ** * ** * ** ** * x;
******* * ** * * * *** * * enter a number\n");
* * * * ** ** ** ** *** * *** * **
*** * *** *** ** * ** * * **
** ****** * *** * ** ** * * * ** * ** *** ***** **
* * ** ** * **** ** ***** ** ** * *
* * **** ** ** ** ***** * * ** * ** * ****** *** * ** ** ***** * *** ** * ** ** * *
    
* * * ** * *****
}
answered by (172 points)
1 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
Case 3: Wrong output
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
Case 3: Wrong output
0 like 0 dislike
Hidden content!
#include<stdio.h>

int main()
{   
* * * ** *** * ** * a;
* ***** * *** * ***** * * *** your number:");
* **** * **** * * ** * * * * ***** * ****
* ** *** * * ** * * ** *** % 11 == 0)
** * ** * ** * ** * *** * * ** *
** ** * * * * * ***
* * * * ** * * ** ** * *
******** ******* * * ***
* * * **** * **** * **** ** *** *** * ***
*** *** * * ** *** ** * 0;
}
** * ** ** ** * * * ** ** *
answered by (164 points)
0 1
prog.c: In function 'main':
prog.c:13:5: warning: implicit declaration of function 'system' [-Wimplicit-function-declaration]
     system("pause");
     ^~~~~~
0 like 0 dislike
Hidden content!
#include<stdio.h>

int main(){
*** *** ** *** **
*** ** *** ** ** * ** num;
*** **** ** ** * * **
* * * **** ** ** * * ** * ** ** * ** * *** *****
** **** ** *** **** **
    
* *** * * *** * ******
**** *** **** ** * ** ** * * *** **** *
** **** * * * * *** ** **
** ****** *** ******* ** * ***** ** * * *

* **** * *** **** ** *
** ******** **** * *
}
answered by (192 points)
edited by
0 0
prog.c: In function 'main':
prog.c:8:13: warning: format '%s' expects argument of type 'char *', but argument 2 has type 'char (*)[1000]' [-Wformat=]
     scanf("%s",&ch);
             ^
0 0
prog.c: In function 'main':
prog.c:8:13: warning: format '%s' expects argument of type 'char *', but argument 2 has type 'char (*)[1000]' [-Wformat=]
     scanf("%s",&ch);
             ^
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Correct output
Case 3: Wrong output
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Correct output
Case 3: Wrong output
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
Case 3: Wrong output
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Correct output
Case 3: Wrong output
0 0
prog.c: In function 'main':
prog.c:8:13: warning: format '%s' expects argument of type 'char *', but argument 2 has type 'char (*)[1000]' [-Wformat=]
     scanf("%s",&ch);
             ^
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Correct output
Case 3: Wrong output
0 like 0 dislike
Hidden content!
#include<stdio.h>
#include<stdlib.h>
int main(void)
{
* ******** * * ** ******** * in,a;
** * * * *** * ** *** * * * *
* ** * ** *** * **** **
**** * ** * * ** * * *
* *** * ** ** * ***
** * * ***** * * *
*** ** *** * * * ** ****** * ** *** **** ** * ** ** * * *
* ** * * ** ** * ****** ** ** *** * * * *
* *** ******** * * * ** if (a!=0){
**** *** * * * ****** * **** ****** * **** ** ** ** ** ** * *
* ** ***** **** ***** ** ** * * * * * *** ****** * * ** *
*** ** * * ** * *
system("pause");
return 0;

}
answered by (185 points)
0 0
prog.c: In function 'main':
prog.c:6:14: warning: format '%ld' expects argument of type 'long int *', but argument 2 has type 'long int' [-Wformat=]
     scanf("%ld",in);
              ^
0 like 0 dislike
Hidden content!
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<math.h>
int main()
{
* * * ** * ** ** j, k = 0, l = 0;
* ***** **** ** * *** str[10000] = {0};
* * * **** ** ** ** **** *** ** ** * str);
* * ** *** ** * * ** * * = 0;j < strlen(str);j ++)
*** * * *** ******
* ** * ** * *** * **** ** **** * * * *** * % 2)
* *** ** ** ** ***** * * * * * **
* ***** ****** * *** * *** *** * * **** ** * * * * ****** ** += str[j] - '0';
* *** ** * ** * * ** **** ** *** ** * **
***** ** * ** * * ** * * ** * *** * * * * ** ****
* * ******** * ** * *** ** * * * **** **
** * ** * ** * * *** * * * ** * * ** ***** **** * * ** * * ** * += str[j] - '0';
*** ** ** **** * * * * * *** **** ** **
* ** ** ** **** ***
**** * * * ** ** ** *** * * - l) % 11 == 0)
* *** * * ** *** **** *** ** ** * ******** *** *** ** *
* ****** *** * * *
** * * * * **** *** * ***** ** * ** * * *** * ** * ** * * ***
}
answered by (18k points)
0 0
Case 0: Correct output
Case 1: Wrong output
Case 2: Correct output
Case 3: Wrong output
0 0
-----------Re-judge-----------
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
Case 3: Correct output
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English 中文 Tiếng Việt
IP:172.69.17.80
©2016-2025

Related questions

2 like 0 dislike
6 answers
[Normal] Coding (C) - asked Dec 20, 2017 in 2017-1 程式設計(一)AD by 楊修俊 (30k points)
ID: 38154 - Available when: Unlimited - Due to: Unlimited
| 1.2k views
2 like 0 dislike
8 answers
[Normal] Coding (C) - asked Dec 20, 2017 in 2017-1 程式設計(一)AD by 楊修俊 (30k points)
ID: 38155 - Available when: Unlimited - Due to: Unlimited
| 1.7k views
2 like 0 dislike
5 answers
[Normal] Essay (Open question) - asked Dec 20, 2017 in 2017-1 程式設計(一)AD by 楊修俊 (30k points)
ID: 38147 - Available when: Unlimited - Due to: Unlimited
| 666 views
12,783 questions
183,442 answers
172,219 comments
4,824 users