3 thích 0 k thích
2.3k đã xem
字串比大小

字串也是可以比大小的,通常都是透過ASCII碼來判斷字串的大小

請寫一個程式依照下列的規則判斷字串的大小

1. 不分大小寫 "a" 跟 "A" 一樣大

2. "a" > "b"

3. "a" > "aa"

輸入說明:

會輸入兩個字串,臉字串間用空白隔開

輸出說明:

請依照範例輸出兩字串的大小關係

輸入範例1:

book cook

輸出範例1:

book > cook

輸入範例2:

being be

being < be

輸入範例3:

include INclUdE

輸出範例3:

include == INclUdE
[Exercise] Coding (C) - đã hỏi trong 2017-1 程式設計(一)AD bởi (18k điểm)
ID: 33758 - Xem được từ: Không giới hạn - Hiệu lực đến: Không giới hạn
| 2.3k đã xem

20 Trả lời

0 thích 0 k thích
Hidden content!
#include <stdio.h>
int main()
{
*********** * * ** a[1000]={'\0'},b[1000]={'\0'};
** ** * ** ** ** * i,j,x,y;

* *** * * * *** *** ***** * * * %s",a,b);

* * **** ** ******* ** * * *** *** * *
*** * ** **** * * ** * ****
** ***** * ** * * ** ** ** ** * ******* **** *** ** *
**** * ** * *
* * * ***** ** ** ** * * * *
***** ** * * ** * ***
*** * *** ** *** * ** *** ** * * *** * *
    }
    
* * * * ** **** ** %d",x,y);
    
* * ** **** * * * * * ********** *
******* * * * * * ***** ******* * ** * ** * *** * ** * ** *** * *
** ***** * ****** ** *** ** ** ***
** *** **** * ** * ** ** * * * * * * *** * ******
* ** * ** ** ** ** *
**** ** ** ** ** **** * **** ** * * ** *** * ***********




** * * * * * **** * 0;
}
trả lời bởi (236 điểm)
đã sửa bởi
0 0
prog.c: In function 'main':
prog.c:11:12: warning: multi-character character constant [-Wmultichar]
         x+='a[i]';
            ^~~~~~
prog.c:15:12: warning: multi-character character constant [-Wmultichar]
         y+='b[j]';
            ^~~~~~
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:11:12: warning: multi-character character constant [-Wmultichar]
         x+='a[i]';
            ^~~~~~
prog.c:15:12: warning: multi-character character constant [-Wmultichar]
         y+='b[j]';
            ^~~~~~
0 thích 0 k thích
Hidden content!
#include <stdio.h>
int main()
{
*** ** ** * * ** * *** * a[1000]={'\0'},b[1000]={'\0'};
* * * * * * ** * * i,j,x,y;

** * **** ** ** * * * ** * %s",a,b);

*** ** **** * ** ** * * **** *
** ** * ** * * * * ***
** * *** * *** * * ** * ***** ** *** ***
** * * **** ***********
** ** * *** ** * *** * *** **
* ** *** ** ** *
** *** * ** ** **** ** ** *** * * *** * * **
* *** *** ** * ***** **
* * * ** * ** ** * ** * * ** * %s",a,b);
* * * *** * *** ** * * * **** * %d",x,y);




**** ** *** ** * 0;
}
trả lời bởi (236 điểm)
0 0
prog.c: In function 'main':
prog.c:7:13: warning: format '%s' expects argument of type 'char *', but argument 2 has type 'int *' [-Wformat=]
     scanf("%s %s",a,b);
             ^
prog.c:7:16: warning: format '%s' expects argument of type 'char *', but argument 3 has type 'int *' [-Wformat=]
     scanf("%s %s",a,b);
                ^
prog.c:11:12: warning: multi-character character constant [-Wmultichar]
         x+='a[i]';
            ^~~~~~
prog.c:15:12: warning: multi-character character constant [-Wmultichar]
         y+='b[j]';
            ^~~~~~
prog.c:17:14: warning: format '%s' expects argument of type 'char *', but argument 2 has type 'int *' [-Wformat=]
     printf("%s %s",a,b);
              ^
prog.c:17:17: warning: format '%s' expects argument of type 'char *', but argument 3 has type 'int *' [-Wformat=]
     printf("%s %s",a,b);
                 ^
0 thích 0 k thích
Hidden content!
#include <stdio.h>
int main()
{
* ***** * ** ** ***** ********* a[1000]={'\0'},b[1000]={'\0'};
* ** ** ** * ** * * *** * i,j,x,y;

* *** * * * * ** ******* %s",a,b);

* * * **** *** ** ****** *******
** *** * ** *** * **
****** *** ***** * ** ** ** * * ** *** * * *
** ** ** * * * * ** *** *
* *** * **** * ** * ** * * * **
* * * * * ** ** **
*** * * ** ** * *** *** * * *** ** * ** * ***
** * * * ** * *
** *** * ** *** ** *** * %s",a,b);
* *** ** ** **** * *** **** ** %d",x,y);




* ** ** **** * * * * 0;
}
trả lời bởi (236 điểm)
0 0
prog.c: In function 'main':
prog.c:7:13: warning: format '%s' expects argument of type 'char *', but argument 2 has type 'int *' [-Wformat=]
     scanf("%s %s",a,b);
             ^
prog.c:7:16: warning: format '%s' expects argument of type 'char *', but argument 3 has type 'int *' [-Wformat=]
     scanf("%s %s",a,b);
                ^
prog.c:11:12: warning: multi-character character constant [-Wmultichar]
         x+='a[i]';
            ^~~~~~
prog.c:15:12: warning: multi-character character constant [-Wmultichar]
         y+='b[j]';
            ^~~~~~
prog.c:17:14: warning: format '%s' expects argument of type 'char *', but argument 2 has type 'int *' [-Wformat=]
     printf("%s %s",a,b);
              ^
prog.c:17:17: warning: format '%s' expects argument of type 'char *', but argument 3 has type 'int *' [-Wformat=]
     printf("%s %s",a,b);
                 ^
0 thích 0 k thích
Hidden content!
* **** ** ** **** * ** ****

int main()
{
*****   char a,b;
* * *  
* * * * ** *** * * * *** * ** ** **
* * * * *
  * * * ** * * *** * * ** * ** **
* ** ** * ** * * ******* * * *
* **** * else * ** ** ** ** ** * *
**** ** * ** *** * * *
*** ** ****** else * ** * * **** * ******
* *** ** *** * * * * * ***** *
******* ****
* * return 0;
** **  
}
trả lời bởi (215 điểm)
đã sửa bởi
0 0
prog.c:1:1: error: expected identifier or '(' before '.' token
 .
 ^
0 0
/usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/Scrt1.o: In function `_start':
(.text+0x20): undefined reference to `main'
collect2: error: ld returned 1 exit status
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!
** **** *
** ** * *
int main()
{
* * * * char ** * ***
** * * *** ** ** *** ******* * *** *** ** ******
* * * * {
****** * **** * *** int * **
* * * * **** * ** * * char * ****
* **** *** * * ***** * * ** **
* ** * **** *** * * * ** *
* * ** * * ** *** * * **
** **** * * ** *** * *** **
*** * * *** * * * * * * ** ** * ** **
* * ** * *** *** ******** ** {
* ** * * * *** ** * * * * * ** ** * * ** ** * ******* **** **
* * ** * *** ** ** * * ******** ** ** ** a[i]+=32;
* * * * * * * * ** ** }
** * ****** *** *** ** * * * ***** * *
** * ** * *** {
** *** * ** * ** ** * * ** *** * * ** ** * * ** ** ** ** ** * *
* * * * * * * **** * ** * * ** *** *** ** *** * * * ** b[i]+=32;
* ** ** ** ** * * ***** *** }
** ** * * * * * * * *** * *
* * * * * ***** ****** * **** {
*** ** ** * * * * **** **** **** * * * * *
** *** ** ** **** * * * * * * *** *** {
* * * * * * ** * * **** ** * * * * * * * *
*** * * * ** * ** ** ** * * * ** * ***** * * ** ** ** ** *** {
* *** * * *** * * * * * *** ** * * ***** * * *** * * ** flag=1;
* ** * * * *** * * ** * * * * * * * * * * *** *** * *** * * * ** * * * break;
** *** *** *** * ** ** * * * * * **** * * ** * * * * ** * }
* ** * * * **** * * * * ** * *** * * ** * * ** else ** ** * **
* ** *** * * * ** ** ** ** ***** ** *** * * * * ** **** {
* *** * ** * * * ** ** * * ** * * ** * * ** * * * ** * *****     flag=2;
* ** *                       break;
* * *                   }
** * *               else
* ** * *                   flag=2;
*** **       * *
*** **       }
** **       *** **
** **   ****   {
* *** *** * *** ** * *** * * * * *** **** **
** ** * * * * * * *** * ** * * {
** * ** ****   * * * * *** * * *
**** * *** ** *** * * ** * * ** ** ** * *** ** ** * * {
* * * * * **** * **** * * ** ** * * * * * ** * *** * * **** * flag=1;
***** ** * * *** * * ** * ** *** ** ** ** * * **       break;
*** * *             ** ** * *** * }
* * * ** * ** *** * ** ***** * ** * * ***** else ******** *
**** ** ** * * * *** * *** * * * * *** *** * ** **** {
* ** * * * * * ** ** * * ** ** ** ** * * *** * ** ** * *** * * *** flag=2;
* ** * * * ** ** ** **** **** * * * * **** *** * ** * *** ** * ** break;
* ** *** * * **** ** *** ** * * * * * * * * * * ***** }
* *** * ** * * * ** * ** * ** *** ** * else
**** ** ** * * * *** * * * * * ** * *** *** * **** flag=1;
* * * * * ** ** ** * }
* * **** * * ** }
** ** ** ** * * * ***** if(y==x)
* *** ** * * *** **** *** {
* * ** * *** *** ** * **** * * * * * ****** **
* * * * ****** * * ** ** * * ** * *** {
* * * *** * * * ** * * * ** * ** * * ** * * *** *
** ***** * *** * * * * * ** *** ** ** * * * ** * ** *** {
** * * ** * *** *** ******* ** *** * ** ** **** ** *** * * **** * flag=1;
* ** * * *** * * ** ** ** ** *** * ** * * * ** * * break;
** ** ** * **** *** ** * ** * *** * ** * ** * ** **** }
** * ****** * *** **** * * **** * ***** ** else ** * * **
* * * ** * * * *** * ** ** * * * * * ****** **** * * * * **** {
* *** * * ** *** *** * **** **** * *** * * * * * * * ** * * flag=2;
* * * * ** * * ** * *** * ** ** * *** * ** ** * ** break;
* * * * * * * **** ** * * * ** * * ** ** ** **** }
*** ***** * ** * * * * * * * * ** * * * * else
** * **** ** * * * * * ** * *** * ** ** * * * * flag=3;
****** * ** * * * * * }
* * ** ** * * * ** }
*** * *** ***** * *** ***
* * ** *** * * ** * * ** ** * {
* * * * ** ** * **** * ** case 1:
* ***** ** ** * **** *** ** * * ** ** ****** ** * *** * < *** *
*** **** * ** *** * ** **** *** ** *** * ** ** * * break;
** ** *** * * * *** *** ** ** * case 2:
* ** * ** * ** * ** ** * ** *** * * * * * * * *** * > **** * ***
***** * ** * * *** ** ** * * * ** * *** *** break;
* ** * *** ** * * * *** * * * * case 3:
* * * **** * *** *** ** * * * ** *** * * ** * * ** **** **** * == ** * * *
** ***** * ****** * * *** ** * **** ** * ** ** ** * ** * break;
* * ** ***** **** * * * }
**** *** ** }
* * *** return 0;
}
trả lời bởi (100 đ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!
* ** ** ** *
** ** * ** * ** *****
int main()
{
* * * * ** ** * char ** ***
* ** * * ** ** ** * * * * ** *** * * ** *
* ** ** **** {
** ** ** ** * * ** int * * * *
* ****** * * * *** char **
* * ** * * ** * * * ** ***
** * ***** ** * * * * * *
* ** *** * ** ** * * **
**** * * * * * ** * ** ** ** * ***
** * * ******** ** * ** *** * * ** ** *
* * ** * * ******* **** * {
*** *** * * * **** * *** *** **** * * * * * * * * ** ****
*** ** * * * * ** **** * *** ** * ** * ** a[i]+=32;
* ** * *** * ** }
** ** * * * ** * * * *****
* ** * * * * ** * * * * {
* ** **** ** * * * ** * ** ** * * ** * ** * ** * * * ***** ** *
****** ** * * *** ** * * *** ** ** ** ** * ** b[i]+=32;
**** * ** * ** * ** ** **** }
* * * * * *** ** *** * ****** *
* * * * * * * * * {
* *** * * ** * ** * * * * * * * ** * *** * *
* ** * *** * ** * * * * * {
** * * * * * * *** ***** * * * *** ** ** *
*** * ** ** * *** * * * ** ** * ** * **** *** {
** *** * * * **** * * ** * * **** * * * * * * * * * ** * * * ** ** flag=1;
* ** *** * * * * *** * * ** ** * ** ** **** * * ** * *** ***** ** ** * break;
** * * * * * ***** * * * * * * * ** *** * * * ***** * ** ** }
* **** ** ** * * * ***** *** * ** ** ** ** * ** * else ** * ******
** * * ** * * * **** ** * ** * ** ** * * **** * ** {
** * * * * * * ** * ** ** * * ** **** * * * * *     flag=2;
***** *                       break;
*** **                   }
*               else
** ** ***                   flag=2;
* **       *
** **       }
* *      
* *   ***   {
***** * * * * *** ** **** * ***
*** * ** ** * * ** * * {
** ***** ** * ** ** * * **   ** *** ** * ** ***
*** ** ** * ***** ** * ** * * ** * *** * ***** * * ** * {
* ** * ** *** * * *** * * * ** * ** ** * ** * * * * * **** * flag=1;
* ** * * **** ** * * *** * * * *** * ** * ** * * ***       break;
*******             *** * ** * * * ** }
**** * ** * *** ** * * * ** * * * * else * ** * ***
* * ** *** * *** **** *** *** **** **** * * * **** {
*** * * * * **** ** * * ** * * ** * * *** ** **** ** * ** *** * ** * * ** * ** flag=2;
* * * * * * ** * * * **** ** ** * * ** **** ******** *** * * ** break;
** * ** * * * ** ** * ** * * ** **** * ****** * * }
** * * ** * * * * ***** **** ** *** else
*** * **** * ** ** * * ** * ** * * * * ** * flag=1;
* * * * ** * * * * ** * ** * }
* * * * **** * **** * }
* ** ** *** *** * * * if(y==x)
******** * * **** * * * * {
* * ******* **** * **** * ** * * *** * * ** ** * **
* * * * * * ** * * * * ** ****** {
*** * * * * * * *** * *** *** ** * *
** * ** * * * ** *** * * *** * * ** * * ** {
* * **** *** * * * * ** * * * * * ** ****** ** * * * *** * flag=1;
* * * *** * * * ** * * * * *** *** * * ** * *** * * break;
** *** * * *** *** * * * * *** * * * ***** **** * * * }
* * * * ** ** ** * * * * * ** ** ** ** ** *** else * ** ** ***
*** * *** ** ** * * ** ***** * ** ** **** ** * * * **** {
* ** ** * * * ** ** **** *** ** ** *** * * * * * ** * * ** ** flag=2;
**** ** ** ** ***** * * ** * * ** * **** ** * * * * * ** ** ** * *** * *** * break;
* * * *** *** * * * ** ** * *** * ** ** *** ** ** ** ** * *** }
* * * * ** *** ** * *** *** * * * * * ** else
***** * * ** * ** ** ** ** * ** ** **** ** * * ** flag=3;
* *** * **** * * * **** * ** **** * * }
** * ** * *** *** ** }
****** * ****** * ** ** * * *
* ******* * *** * * {
** * *** * *** * ** ** ****** ** * case 1:
* * * * *** * **** * **** ****** * ** ** * ** * * ** ** **** < * *** * ** *
** * * * ** * ** * * ** * * * *** ** ** * * * break;
** ** *** * ** ** * * * *** ** * *** case 2:
** * * * * * ** ** * ** * * *** * * * * * > ** ***** **
* *** * * * *** ** * *** * * ****** * * *** ** **** break;
** * ** * * * ** * * ** * ** * * * ** case 3:
** * * *** * ** ****** ** * * *** * * ** * ** *** * * == **** * *
* * *** ** ** * **** **** * * * **** break;
** * ** * *** * * }
* * * * }
* ** * *** return 0;
}
trả lời bởi (100 đ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
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
0 thích 0 k thích
Hidden content!
#include ** *** * ** ***
#include ** * **
#include * * *

int main(int argc, char const *argv[])
{
* ** * ** * char ** ** ******** *
*** * ** int com,i,j;
** ** * * * ** * ** * * * * ** * *
** ** * ** ** * {
* * ** ** * ** ** * * * * * * * * ** * *
* *** * *     * *** * **** ** * * **
* * * * * *   * ** * * ****** * * * * ***
***** ** *** * * ** * *** * ** ***** ** * **** ** * * *** * * **
* * * * * ** ** *** * * * *** **
*** * * * *** * * ** * *******
* * *** *** * **** ***** * ** * * **** ** * *** > **** * * );
* ** * * ** ** * * else * * * *
* * ** * * * * * * ***** ** ** * * * * * < * );
* **** * * * *** ** * ** else
** ****** ** * * *** ** **** ** * == * * **** );
* * ** * ** }


** ** * ** * return 0;
}
trả lời bởi (114 điểm)
0 0
prog.c: In function 'main':
prog.c:14:10: error: assignment to expression with array type
     tempb=tolower(b[i]);
          ^
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 thích 0 k thích
Hidden content!
#include ** ** * * **
#include * * ** *

int * **** char str[], const char key[]);

int main()
{
*** * **** * ** str[1000], key[1000];
* *** ** *** ** * *
***** ***** * * ** ** * ***
* *** ****** **** ** **** *** %d ** * count(str, key));
** * ** ** * * * 0;
}

int count(const char str[], const char key[])
{
* ** * * *** ***** * * ** * * * *
** *** * *** ************ * * * * key);
*** * ** ** * * * * * * ** *
*** ***** *** * ** * **
* ** * ** *** * ** * ******* ** * * * ***
** * *** *** * * ** ** * *** * * * * * *
*** * * * * *** ** **** * * *** * * * **** * * key);
* * ***** ***
** * * **** * * ** * * count;
}
trả lời bởi (190 điểm)
0 0
prog.c: In function 'main':
prog.c:9:4: warning: 'gets' is deprecated [-Wdeprecated-declarations]
    gets(str);
    ^~~~
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:10:4: warning: 'gets' is deprecated [-Wdeprecated-declarations]
    gets(key);
    ^~~~
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__;
              ^~~~
/tmp/cc24SSNn.o: In function `main':
prog.c:(.text+0x25): warning: the `gets' function is dangerous and should not be used.
0 thích 0 k thích
Hidden content!
#include <stdio.h>
#include <string.h>
int main(){
** *** ** * ** * * s1[1000];
*** *** * * * * * **** s2[1000];
* * ** * *** * *** s3[1000],s4[1000];
*** * ** * * * * ** i;
** ** **** *** *** * ******* ** * s1,s2
* **** ***** ** * * * ****** *** %s",s1,s2);
** * * * * * *** *** ** s1 to s3,s2 to s4
* * * * *** * ** ** ** *
* * * ***** ** ** * * ** *
* * **** *** ******* * *** * s1 to ALL uppercase
* * ** **** ** *** * * * ** * ** ** ** **** *
** * * ** * ** * * * * ***** * * ** * *** *** * * * * * ** ** **
** * ** **** * * * ** **** * * * * *** * ** *** *** *** * *** * * * **** *
    }
** * *** * *** ** *** * * * s2 to ALL lowercase
*** * * *** ** ** ** * ** *** * *
* * * * * * ** * * **** ** * ** **** * ** * * * * ** **** ** * **
** ** * * * * *** *** ** * * * * ***** *** **** * *** * **
* * ******* * * ** **
********** * ** ** * * ** * s1,s2(be converted to all uppercase)
**** * * * *** * * *** * *
*** * ** * ** * * *** * ** ** ** *** == %s",s3,s4);
***** ** * *** *** ****
* * *** ** *** *** if(strcmp(s1,s2)<0){
* ** *** * * * *** * ** * *** * * * ****** ***** ** *** **** > %s",s3,s4);
* ***** * ** *****
* * * * *** *** ** * if(strcmp(s1,s2)>0){
* *** * ** * * ** * ***** * * * **** * * * ** * * ** < %s",s3,s4);
* * *** * * * * * *
*** *** * * *** * ** * ** *** * 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 <stdio.h>
#include <string.h>
int main(){
** ** ** *** ** **** s1[1000];
** ** **** ** * * s2[1000];
** ** *** *** ** *** * s3[1000],s4[1000];
*** * ***** *** *** *** * i;
* * * ** ** ***** * * * s1,s2
* ** ** * * * ****** * %s",s1,s2);
* * *** * * **** *** * * ****** s1 to s3,s2 to s4
**** ** ** * * ***** * *** * *
** * **** **** ******* * *
***** *** * ** **** *** s1 to ALL uppercase
* * ** * ** ****** ***** * * *
* * ** * * ******* * ** * * ** * ** ** * *** * *** * ** * * ****
* * * * ** * ** * ** *** * ******* * * * * ** * *
    }
** * * ** ***** * s2 to ALL lowercase
* **** * **** * ** * ** * ***** ** **** * *
* ** * * ** **** * ** *** * **** * ** * ** * * * * ** ** ****** * * * * *
***** * * *** * ****** * ******* * * ** * **** * * *** * * * ***
* * * ** ** ** * ** ***
* * **** *** ** ** * **** * s1,s2(be converted to all uppercase)
* * *** * ** ***** ** * **** ** *
* * * *** *** * **** * ** * * ** *** ** * == %s",s3,s4);
* ***** * * * ** * * ** *
* * * ** *** if(strcmp(s1,s2)<0){
*** * *** * ** ** * *** * ** * ** ** *** ** * *** * > %s",s3,s4);
* *** ** **** * ** * *
* * ***** *** * *** if(strcmp(s1,s2)>0){
* * * * ** * ** * * ***** * * ** * * ***** * * * ** < %s",s3,s4);
** * ** ** * * * **
*** * * ***** *** * * ** 0;
}
trả lời bởi (194 điểm)
0 0
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:108.162.216.239
©2016-2024

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

2 thích 0 k thích
24 trả lời
[Exercise] Coding (C) - đã hỏi ngày 16 tháng 11 năm 2017 trong 2017-1 程式設計(一)AD bởi Shun-Po (18k điểm)
ID: 33762 - Xem được từ: Không giới hạn - Hiệu lực đến: Không giới hạn
| 2.2k đã xem
3 thích 0 k thích
22 trả lời
[Exercise] Coding (C) - đã hỏi ngày 16 tháng 11 năm 2017 trong 2017-1 程式設計(一)AD bởi Shun-Po (18k điểm)
ID: 33757 - Xem được từ: Không giới hạn - Hiệu lực đến: Không giới hạn
| 2.5k đã xem
3 thích 0 k thích
6 trả lời
[Exercise] Coding (C) - đã hỏi ngày 30 tháng 11 năm 2017 trong 2017-1 程式設計(一)AD bởi Shun-Po (18k điểm)
ID: 34979 - Xem được từ: Không giới hạn - Hiệu lực đến: Không giới hạn
| 863 đã xem
3 thích 0 k thích
9 trả lời
[Exercise] True/False - đã hỏi ngày 16 tháng 11 năm 2017 trong 2017-1 程式設計(一)AD bởi 楊修俊 (30k điểm)
ID: 33763 - Xem được từ: 2017-11-16 14:00 - Hiệu lực đến: 2017-11-16 14:30
| 503 đã xem
3 thích 0 k thích
5 trả lời
[Exercise] Coding (C) - đã hỏi ngày 30 tháng 11 năm 2017 trong 2017-1 程式設計(一)AD bởi Shun-Po (18k điểm)
ID: 34978 - Xem được từ: Không giới hạn - Hiệu lực đến: Không giới hạn
| 899 đã xem
12,783 câu hỏi
183,443 trả lời
172,219 bình luận
4,824 thành viên