3 喜歡 0 不喜歡
6.3k 瀏覽
字串比大小

字串也是可以比大小的,通常都是透過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
[練習] Coding (C) - 最新提問 分類:2017-1 程式設計(一)AD | 用戶: (18k 分)
ID: 33758 - 從幾時開始: 無限制 - 到幾時結束: 無限制
| 6.3k 瀏覽

20 個回答

0 喜歡 0 不喜歡
內容已隱藏
#include <stdio.h>
int main()
{
***** * ***** * ** * * a[1000]={'\0'},b[1000]={'\0'};
**** *** ** * * * * ** i,j,x,y;

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

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




*** ** *** * * ** * ** 0;
}
最新回答 用戶: (236 分)
修改於 用戶:
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 喜歡 0 不喜歡
內容已隱藏
#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;
}
最新回答 用戶: (236 分)
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 喜歡 0 不喜歡
內容已隱藏
#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;
}
最新回答 用戶: (236 分)
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 喜歡 0 不喜歡
內容已隱藏
*** **** * **********

int main()
{
  char a,b;
*** *  
** * *** ** ** ** ** * * ** * * * *
* *** * * **
  ** ** * *** ** *** * **
*** * **** * **** *** ** **** * *** ***
** ** ** else ** *** *** * *** **
* * * * ** ***** *** * ** * * **** * **
* * * * else * * *** *** * *
* ** * ** * ** ** * ** *** * **
* * * **
** * * ** return 0;
* * ****  
}
最新回答 用戶: (215 分)
修改於 用戶:
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 喜歡 0 不喜歡
內容已隱藏
* ** * * *** *
** *** ** ***
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;
}
最新回答 用戶: (100 分)
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
0 喜歡 0 不喜歡
內容已隱藏
* * * * ***
** *** *** * *
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;
}
最新回答 用戶: (100 分)
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 不喜歡
內容已隱藏
#include *** * *
#include * * ** * * ** * **
#include ** *** ** ****

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


** * * return 0;
}
最新回答 用戶: (114 分)
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 喜歡 0 不喜歡
內容已隱藏
#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;
}
最新回答 用戶: (190 分)
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 喜歡 0 不喜歡
內容已隱藏
#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;
}
最新回答 用戶: (212 分)
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
0 喜歡 0 不喜歡
內容已隱藏
#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;
}
最新回答 用戶: (194 分)
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:172.69.17.67
©2016-2025

相關問題

2 喜歡 0 不喜歡
24 回答
[練習] Coding (C) - 最新提問 11月 16, 2017 分類:2017-1 程式設計(一)AD | 用戶: Shun-Po (18k 分)
ID: 33762 - 從幾時開始: 無限制 - 到幾時結束: 無限制
| 6.8k 瀏覽
3 喜歡 0 不喜歡
22 回答
[練習] Coding (C) - 最新提問 11月 16, 2017 分類:2017-1 程式設計(一)AD | 用戶: Shun-Po (18k 分)
ID: 33757 - 從幾時開始: 無限制 - 到幾時結束: 無限制
| 7.8k 瀏覽
3 喜歡 0 不喜歡
6 回答
[練習] Coding (C) - 最新提問 11月 30, 2017 分類:2017-1 程式設計(一)AD | 用戶: Shun-Po (18k 分)
ID: 34979 - 從幾時開始: 無限制 - 到幾時結束: 無限制
| 2.6k 瀏覽
3 喜歡 0 不喜歡
9 回答
[練習] 對錯二選一 - 最新提問 11月 16, 2017 分類:2017-1 程式設計(一)AD | 用戶: 楊修俊 (30k 分)
ID: 33763 - 從幾時開始: 2017-11-16 14:00 - 到幾時結束: 2017-11-16 14:30
| 1.4k 瀏覽
3 喜歡 0 不喜歡
5 回答
[練習] Coding (C) - 最新提問 11月 30, 2017 分類:2017-1 程式設計(一)AD | 用戶: Shun-Po (18k 分)
ID: 34978 - 從幾時開始: 無限制 - 到幾時結束: 無限制
| 2.6k 瀏覽
12,783 問題
183,442 回答
172,219 留言
4,824 用戶