回覆列表
  • 1 # 畱羀

    程式如下

    #include<stdio.h>

    int main()

    {

    char ch;

    printf("請輸入一個小寫字母:");

    scanf("%c",&ch);

    ch=ch-32;

    printf("大寫字母是:%c\n",ch);

    return 0;

    }

    可以加一個判斷

    #include<stdio.h>

    int main()

    {

    char ch;

    printf("請輸入一個小寫字母:");

    scanf("%c",&ch);

    while(!(ch>="a"&&ch<="z"))

    {printf("輸入錯誤,請重新輸入一個小寫字母!");

    scanf("%c",&ch);

    }

    ch=ch-32;

    printf("大寫字母是:%c\n",ch);

    return 0;

    }

    }

  • 中秋節和大豐收的關聯?
  • 為什麼excel處於保護狀態需要有密碼並且沒設定允許使用者編輯區域但是還是可以編輯,為什麼?怎麼處理?