603.
設計說明:
1. 修改程式碼片段中的程式語法、邏輯上的錯誤,執行結果如範例圖。
參考程式碼:
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- int main ()
- {
- char str2[]="Apple iPod";
- char str4[]="Apple iPad";
- int n;
- n=strcmp(str2, str4);//比較字串函數為strcmp(),而不是strCmp()
- if (n>0)
- printf("%s大於%s\n", str2, str4);
- else if (n==0)//邏輯運算等於是"=="
- printf("%s等於%s\n", str2, str4);
- else
- printf("%s小於%s\n", str2, str4);
- n=strncmp(str2, str4,5);//比較字串(含數量)函數為strncmp(),而不是strnCmp(),後面要加比較的數量
- if (n>0)
- printf("%s前五個字元大於%s前五個字元\n", str2, str4);
- else if (n==0)//邏輯運算等於是"=="
- printf("%s前五個字元等於%s前五個字元\n", str2, str4);
- else
- printf("%s前五個字元小於%s前五個字元\n", str2, str4);
- system("PAUSE");
- return 0;
- }
- 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。
聲明:
這裡的範例程式碼皆由本人親自編輯,歡迎轉載本教學,但請註明本網站,尊重一下作者的心血
沒有留言:
張貼留言
歡迎留言,較舊文章需要留言審核看不到自己的留言是正常的。
若長時間無回應請使用以下聯絡方式:
填寫表單:https://forms.gle/hxxX9n4tATcFnhnk8
寄信到:happyplayblogs@gmail.com