本帖最後由 李泳霖 於 2022-6-6 16:51 編輯
設計說明:
1. 修改程式碼片段中的程式語法、邏輯上的錯誤,執行結果如範例圖。
int toupper(int c):轉換成大寫字元。
int tolower(int c):轉換成小寫字元。- #include <stdio.h>
- #include <stdlib.h>
- #include <conio.h>
- #include <ctype.h>
- int main ()
- {
- char ch, ch2;
- printf("請輸入一小寫的英文字母: ");
- ch=getche();
-
- //將下列的字元轉為大寫
- ch2=tolower(ch);
- printf("%c的大寫是%c", ch, ch2);
-
- /*
- while (ch != '\n') {
- continue;
- }
- */
- //將下列的字元轉為小寫
- printf("\n請輸入一大寫的英文字母: ");
- scanf("%c", &ch);
- ch2=toupper(ch);
- printf("%c的小寫是%c", ch, ch2);
-
- system("PAUSE");
- return 0;
- }
複製代碼 |