返回列表 發帖

602 字元字串與檔案處理

本帖最後由 李泳霖 於 2022-6-6 16:48 編輯

設計說明:
1. 修改程式碼片段中的程式語法、邏輯上的錯誤,執行結果如範例圖。



int strcmp(const char* cs, const char* ct):比較字串cs和ct。
int strncmp(const char* cs, const char* ct, size_t n):比較字串cs和ct的前 n 個字元。
如果前面大於後面則是true=1,相等為0,小於則是-1。
  1. /* TQC+ C - 602 */

  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>

  5. int main ()
  6. {
  7.     char str2[]="Apple iPod";
  8.     char str4[]="Apple iPad";
  9.     int n;

  10.     n=strcmp(str2, str4);
  11.     /* strcmp()比較字串的函式,如果前面大於後面則是true=1,相等為0,小於則是-1 */
  12.     if (n > 0) {
  13.         printf("%s大於%s\n", str2, str4);
  14.     } else if (n == 0) {  /* 條件式相等用== */
  15.         printf("%s等於%s\n", str2, str4);
  16.     } else {
  17.         printf("%s小於%s\n", str2, str4);
  18.     }

  19.     n=strncmp(str2, str4, 5);
  20.     if (n>0) {
  21.         printf("%s前五個字元大於%s前五個字元\n", str2, str4);
  22.     } else if (n==0) {//條件式相等用==
  23.         printf("%s前五個字元等於%s前五個字元\n", str2, str4);
  24.     } else {
  25.         printf("%s前五個字元小於%s前五個字元\n", str2, str4);
  26.     }
  27.     system("PAUSE");

  28.     return 0;
  29. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

此帖僅作者可見

TOP

返回列表