返回列表 發帖

604 字元字串與檔案處理

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

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



int toupper(int c):轉換成大寫字元。
int tolower(int c):轉換成小寫字元。
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <conio.h>
  4. #include <ctype.h>

  5. int main ()
  6. {
  7.         char ch, ch2;
  8.         printf("請輸入一小寫的英文字母: ");
  9.         ch=getche();
  10.        
  11.         //將下列的字元轉為大寫
  12.         ch2=tolower(ch);
  13.         printf("%c的大寫是%c", ch, ch2);
  14.        
  15.         /*
  16.         while (ch != '\n') {
  17.         continue;
  18.         }
  19.         */
  20.         //將下列的字元轉為小寫
  21.         printf("\n請輸入一大寫的英文字母: ");
  22.         scanf("%c", &ch);
  23.         ch2=toupper(ch);
  24.         printf("%c的小寫是%c", ch, ch2);
  25.        
  26.         system("PAUSE");
  27.         return 0;
  28. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表