標題:
604 字元字串與檔案處理
[打印本頁]
作者:
李泳霖
時間:
2022-6-6 13:02
標題:
604 字元字串與檔案處理
本帖最後由 李泳霖 於 2022-6-6 16:51 編輯
設計說明:
1. 修改程式碼片段中的程式語法、邏輯上的錯誤,執行結果如範例圖。
[attach]13200[/attach]
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;
}
複製代碼
作者:
李泳霖
時間:
2022-6-6 13:04
此帖僅作者可見
作者:
鄭程富
時間:
2022-6-6 17:01
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2