1 thích 0 k thích
10.5k đã xem

(20%)由於經濟不景氣,張三決定改行當個占卜師。但張三對於占卜術還不太上手,非常苦惱。請幫他設計一個程式如下:

請輸入一個日期,然後依照下面的公式:

M=月
D=日
S=(M*2+D)%3

得到 S 的值,再依照 S 的值從 0 到 2 分別給與 小吉(small)、中吉(medium)、大吉(big) 等三種不同的運勢。

input:

1 1

output:

small

 

[Exam] đã hỏi trong 2017-1 程式設計(一)AD bởi (30k điểm)
ID: 43449 - Xem được từ: 2018-01-19 18:30 - Hiệu lực đến: 2018-01-19 21:30

đã sửa bởi | 10.5k đã xem

21 Trả lời

0 thích 0 k thích
Hidden content!
#include<stdio.h>
int main()
{
**** ** * * * ** *** * * M,D,S;
* * * * *** * * ** * **** * %d",&M,&D);
*** * ***** ** * *** *******
* ****** ** * *** **** ** *
* ** ** *** **
*** *** * **** * * * * ** ****** * * * * * ** *
**** * * ** * * **
** **** * *** * * *** ** if(S=1)
    {
* * * * ** * ** *** *** ** * * *** ******* ****** ** * *
*** ** * *** * *** * ***
* * **** ** **** ** ***** if(S=2)
** * ** * * *** ** **** *
** *** ** * * ** * * ** ** *** * *** ** ** *** ***
* * ** ** * * *** * * *
***** ** * * * ** * 0;
}
trả lời bởi (202 điểm)
0 0
prog.c: In function 'main':
prog.c:5:13: warning: format '%d' expects argument of type 'int *', but argument 2 has type 'int' [-Wformat=]
     scanf("%d %d",M,D);
             ^
prog.c:5:16: warning: format '%d' expects argument of type 'int *', but argument 3 has type 'int' [-Wformat=]
     scanf("%d %d",M,D);
                ^
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 thích 0 k thích
Hidden content!
#include<stdio.h>
int main()
{
*** ** **** * * * M,D,S;

* * * * * * ** * ******* *** *** %d\n",&M,&D);

**** * * ** * ** ** ******* ***
    {
** * **** * * * * (s=0){
**** ** * *** ** **** * ** * * ***** *** * ** ** ** **
    }
* * ** * ***** **** ***** if(s=1){
*** ******** * ** ** * * ***** **** ** * ** * *** * **** * ***
* *** *** * * * ** *** * * *
** * * ** * ** * *** if(s=2){
* * * * * * * *** *** ** ** * * ******** ** * * **** **** *
* ** * **** ** * * *** *

* ** * * ** * * * *
** ** * * ** * ***** * * *** * ** * ** * * *
* * **** ** * * * ***
* * *** *** **** * * ** ******** * ** *
* *** * * ******* 0;
* ***** * * **
** * *** * ******* ** *** * ***** ** * * * *
    
* * * * * *** * ** *** 0;
***** ******** *** *
trả lời bởi (194 điểm)
đã sửa bởi
0 0
prog.c: In function 'main':
prog.c:8:14: warning: format '%d' expects argument of type 'int', but argument 2 has type 'int *' [-Wformat=]
     printf("%d",&S);
              ^
prog.c:12:14: warning: too many arguments for format [-Wformat-extra-args]
       printf("samll\n",&S);
              ^~~~~~~~~
prog.c:15:14: warning: too many arguments for format [-Wformat-extra-args]
       printf("medium\n",&S);
              ^~~~~~~~~~
prog.c:18:14: warning: too many arguments for format [-Wformat-extra-args]
       printf("big\n",&S);
              ^~~~~~~
prog.c:27:5: warning: implicit declaration of function 'system' [-Wimplicit-function-declaration]
     system("pause");
     ^~~~~~
0 0
prog.c: In function 'main':
prog.c:8:20: warning: conversion lacks type at end of format [-Wformat=]
     scanf("(M*2+D)%3",&S);
                    ^
prog.c:8:11: warning: too many arguments for format [-Wformat-extra-args]
     scanf("(M*2+D)%3",&S);
           ^~~~~~~~~~~
prog.c:12:16: warning: too many arguments for format [-Wformat-extra-args]
         printf("samll\n",&S);
                ^~~~~~~~~
prog.c:14:16: warning: too many arguments for format [-Wformat-extra-args]
         printf("medium\n",&S);
                ^~~~~~~~~~
prog.c:16:16: warning: too many arguments for format [-Wformat-extra-args]
         printf("big\n",&S);
                ^~~~~~~
prog.c:21:14: warning: format '%d' expects argument of type 'int', but argument 2 has type 'int *' [-Wformat=]
     printf("%d",&S);
              ^
prog.c:22:5: warning: implicit declaration of function 'system' [-Wimplicit-function-declaration]
     system("pause");
     ^~~~~~
0 0
prog.c: In function 'main':
prog.c:8:20: warning: conversion lacks type at end of format [-Wformat=]
     scanf("(M*2+D)%3",&S);
                    ^
prog.c:8:11: warning: too many arguments for format [-Wformat-extra-args]
     scanf("(M*2+D)%3",&S);
           ^~~~~~~~~~~
prog.c:21:14: warning: format '%d' expects argument of type 'int', but argument 2 has type 'int *' [-Wformat=]
     printf("%d",&S);
              ^
prog.c:22:5: warning: implicit declaration of function 'system' [-Wimplicit-function-declaration]
     system("pause");
     ^~~~~~
0 0
prog.c: In function 'main':
prog.c:10:9: error: 's' undeclared (first use in this function)
     if (s=0){
         ^
prog.c:10:9: note: each undeclared identifier is reported only once for each function it appears in
prog.c:23:5: warning: implicit declaration of function 'system' [-Wimplicit-function-declaration]
     system("pause");
     ^~~~~~
prog.c: At top level:
prog.c:26:12: error: expected declaration specifiers or '...' before string constant
     printf("%d",&S);
            ^~~~
prog.c:26:17: error: expected declaration specifiers or '...' before '&' token
     printf("%d",&S);
                 ^
prog.c:27:12: error: expected declaration specifiers or '...' before string constant
     system("pause");
            ^~~~~~~
prog.c:28:5: error: expected identifier or '(' before 'return'
     return 0;
     ^~~~~~
prog.c:29:5: error: expected identifier or '(' before '}' token
     }
     ^
0 0
prog.c: In function 'main':
prog.c:10:9: error: 's' undeclared (first use in this function)
     if (s=0){
         ^
prog.c:10:9: note: each undeclared identifier is reported only once for each function it appears in
prog.c:23:5: warning: implicit declaration of function 'system' [-Wimplicit-function-declaration]
     system("pause");
     ^~~~~~
prog.c: At top level:
prog.c:26:12: error: expected declaration specifiers or '...' before string constant
     printf("%d",&S);
            ^~~~
prog.c:26:17: error: expected declaration specifiers or '...' before '&' token
     printf("%d",&S);
                 ^
prog.c:28:5: error: expected identifier or '(' before 'return'
     return 0;
     ^~~~~~
prog.c:29:5: error: expected identifier or '(' before '}' token
     }
     ^
0 thích 0 k thích
Hidden content!
#include <stdio.h>

int main()
{
** * * *** * * * date,month,sum;
* ** ******* * * * * **** **** * ** ** * * *** * **** * * *
* *** * * * *
* * *** * **** * **** * * * ***** ******* * * **** ** * **
* * * *** * ** * * *** *** ******* *** * * * * ****** ***** *** * * * **** * ** *********** * ** * * * *** * * *** * *
    }

* ** * ** * ** ** * ** ***** 0;
}
trả lời bởi (114 điểm)
đã sửa bởi
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 0
prog.c: In function 'main':
prog.c:4:11: warning: implicit declaration of function 'scanf' [-Wimplicit-function-declaration]
     while(scanf("%d %d",&month,&date)!=EOF)
           ^~~~~
prog.c:4:11: warning: incompatible implicit declaration of built-in function 'scanf'
prog.c:4:11: note: include '<stdio.h>' or provide a declaration of 'scanf'
prog.c:4:40: error: 'EOF' undeclared (first use in this function)
     while(scanf("%d %d",&month,&date)!=EOF)
                                        ^~~
prog.c:4:40: note: each undeclared identifier is reported only once for each function it appears in
prog.c:7:9: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
         printf("%s\n",sum==0?"small":sum==1?"medium":sum==2?"big":"");
         ^~~~~~
prog.c:7:9: warning: incompatible implicit declaration of built-in function 'printf'
prog.c:7:9: note: include '<stdio.h>' or provide a declaration of 'printf'
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
0 thích 0 k thích
Hidden content!
#include<stdio.h>
int main()
{
    int m,d,s;
* * **** * **** ** * ** ** %d",&m,&d);
    
    s = (m*2+d)%3;
    
    switch(s)
    {
* *** * * * ** * * ** * **** * * * ** * * ** **** ***** * * * * **** *** 0:
**** * * *** * * * ** *** * *** *** * ** * ** ** * * * ******* ******* * * * ** * ***** ****** * ** ** * ****** * ***** * *
* **** * **** *** ** **** ** * * **** *** ***** * ******* ** *** * * * ***** *** * * ** *** ** * * ** ****
* *** *********** ****** * *** ** * ** ***** ** **** *** ** *** *** * ** *** *** * ** * * ** * * * *
****** * * ** **** * * * * * ** * * * * ** * ** * *** * * *** * 1:
** * ** ** *** * ** * ** * * ** ***** * **** * ** ** * ** * * * * * ** * * * **** * * ***** ** ** ** *
****** ****** *** * *** * * **** * ** * *** ** ** * * * * * * ** ** * **** * * * * * ** * ** * **
** * * ** ** ** ***** * *** * * ** * * * ** * ** ** *** * * ** * * * ****
* * * * * * ***** **** ** * ** ***** * * * * **** * * * ** * ** 2:
* ** * * ** * * **** ** *** * ***** *** * * ** ***** **** * ** *** * * * * * ** ** ** ** * * ***** * **** * * * * ** ***
* * ** *** * * * *** * * * * * * * ***** * * * ** * * * *** * ** *** * ** *** * * * * * * ****
}
    
    return 0;
}
trả lời bởi (212 điểm)
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
0 thích 0 k thích
Hidden content!
#include * * *** **
int main()
{
* * * * * ** * ** ** ** * m, d, s;
* **** ** * *** * *** * * ** * ** *** ***
** **** * ***** ** ** * * * * ***** ** ***
** * *** * *** ** = (m * 2 + d)%3;
*** * ** ** ** ** ** * ** < 1)
* * *** * ** ** * * * * * * * ***** *** * *
*** * ** ** ********* >= 1&&s <= 2)
* * ** ****** ** * * * ** * ** ** *** * *
* * ** * ** *** *** > 2)
** * * ** **** *** ****** * ** ** * *
}
trả lời bởi (240 điểm)
0 0
prog.c: In function 'main':
prog.c:5:13: warning: format '%d' expects argument of type 'int *', but argument 2 has type 'int' [-Wformat=]
     scanf("%d",m);
             ^
prog.c:6:13: warning: format '%d' expects argument of type 'int *', but argument 2 has type 'int' [-Wformat=]
     scanf("%d",d);
             ^
0 thích 0 k thích
Hidden content!
* * * * *** ** **

int main()
{
* * ** * int m,d,s;
*** * ** * * * * ** ***
* ** * ** * s= * *
* *** * if(s==0)
* * ** * ** * * **** **** * * **
** * *   else if(s==1)
* * ** * ** * *** ****
** * ** ** else
** ** * ** * ***** ***** * *** **
}
trả lời bởi (164 điểm)
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
0 0
-----------Re-judge-----------
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 0
-----------Re-judge-----------
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
0 thích 0 k thích
Hidden content!
#include<stdio.h>
int main(void)
{
** * * ** ****** * * * m,d,s;
*** ** * * * * * ** * * %d",&m,&d);
* * * * * ***** *
* * * ** ** ** *** ** * * ****
** ** * * *** * * * ** ** * *
* * *** * *** * ** **** * ** if(s==1)
* * * * * *** * **** * * * * ** * ** *** ***** *
****** * *** ** *** if(s==2)
** ** **** ****** * * * ***** *** **
*** ** ** ****** * * ** *
* * ** ****** ** * *** ** 0;
}
trả lời bởi (160 điểm)
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 0
-----------Re-judge-----------
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
0 thích 0 k thích
Hidden content!
#include <stdio.h>

int main ()
{
*** * ** ** * ***** m,d,s;
* ** ***** ** * *** ** ** ** * ** ***** %d",&m,&d);
* ** *** * **** = (m*2+d)%3;
*** ** ** * ** * * ** * (s == 0)
** * *** * * ** * *
* * ** * * ** * * * * ** *** * ** *** * *
* * * ** ****** * * * ** *
* * * ** * * *** ***** * (s == 1)
** *** * * * * *** ***
* * ***** ** * *** **** * * * *** **** ***** *
* * * * ** **
* * * * ***** * * ** ** * * * (s == 2)
* * * ** ** *** ***
* ** *** ** * *** * ** * * * * ******
** **** * *** ** * * * *
   
*** * * ** ** * *** ** ***
* *** *** ** ** ** ** * 0;
}
trả lời bởi (196 điểm)
đã sửa bởi
0 0
prog.c: In function 'main':
prog.c:20:5: warning: implicit declaration of function 'system' [-Wimplicit-function-declaration]
     system("pause");
     ^~~~~~
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 0
-----------Re-judge-----------
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
0 thích 0 k thích
Hidden content!
#include <stdio.h>

int main()
{
* *** *** * * * ** m,d,s;
** * * * ** *** * * ** %d",&m,&d);
** * ** ** * *** * **
* * ** * ***** ***
* * * * ** * * ** ** ** ** * * ******** * **
** * ***** * * * *** * * if(s==1)
*** * * *** * * ** ** ***** * ** * ** **
*** ** * * *** * ******* if(s==2)
* * *** ** *** * ** * ** **** * ** *
* * * * ***** ** * *** * 0;
}
trả lời
đã sửa bởi
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 0
-----------Re-judge-----------
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
0 thích 0 k thích
Hidden content!
#include<stdio.h>
int main()
{
    int m ,d ,s;
** ** * ** *** *** * * ** * * ** %d",&m,&d);
** ** ** *** * * * ** ** *
*** ** **** ** *** * ****** * *
* * *** ***** ** * * * * ** ** ** ** ** *** * ***** ** **
*** ** * * * * * * ***
**** * * * ******* * **
* ** * * *** **** ** * ** *** * * * * * ** * ** ** *
* ** ***** * ** * * ****
*** * ** * * *** *** * * * * *** * ** * ***
*** * ** * ***** ** *** ** ** ** * ** ** * *** *
* ** * *** * * * ***** * 0;
}
trả lời bởi (172 điểm)
hiện lại bởi
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
0 0
-----------Re-judge-----------
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English 中文 Tiếng Việt
IP:172.71.1.189
©2016-2025

Những câu hỏi liên quan

1 thích 0 k thích
24 trả lời
[Exam] đã hỏi ngày 19 tháng 1 năm 2018 trong 2017-1 程式設計(一)AD bởi 楊修俊 (30k điểm)
ID: 43456 - Xem được từ: 2018-01-19 18:30 - Hiệu lực đến: 2018-01-19 21:30
| 2.9k đã xem
1 thích 0 k thích
24 trả lời
[Exam] đã hỏi ngày 19 tháng 1 năm 2018 trong 2017-1 程式設計(一)AD bởi 楊修俊 (30k điểm)
ID: 43455 - Xem được từ: 2018-01-19 18:30 - Hiệu lực đến: 2018-01-19 21:30
| 2.5k đã xem
1 thích 0 k thích
24 trả lời
[Exam] đã hỏi ngày 19 tháng 1 năm 2018 trong 2017-1 程式設計(一)AD bởi 楊修俊 (30k điểm)
ID: 43454 - Xem được từ: 2018-01-19 18:30 - Hiệu lực đến: 2018-01-19 21:30
| 3.5k đã xem
2 thích 0 k thích
24 trả lời
[Exam] đã hỏi ngày 19 tháng 1 năm 2018 trong 2017-1 程式設計(一)AD bởi 楊修俊 (30k điểm)
ID: 43453 - Xem được từ: 2018-01-19 18:30 - Hiệu lực đến: 2018-01-19 21:30
| 2.8k đã xem
1 thích 0 k thích
23 trả lời
[Exam] đã hỏi ngày 19 tháng 1 năm 2018 trong 2017-1 程式設計(一)AD bởi 楊修俊 (30k điểm)
ID: 43452 - Xem được từ: 2018-01-19 18:30 - Hiệu lực đến: 2018-01-19 21:30
| 2.4k đã xem
12,783 câu hỏi
183,442 trả lời
172,219 bình luận
4,824 thành viên