回覆列表
  • 1 # 使用者9154449839992

    程式碼如下(你自己加上必要的標頭檔案吧):

    int main()

    {

    int indexInp = 0;

    int indexRes = 0;

    char input[100] = {0};

    char result[100] = { 0 };

    //輸入字串

    scanf("%s", input);

    while (input[indexInp] != "\0")//每次讀取一個字元,直到字串結尾

    {

    //判斷字元是否在26個大寫字母範圍之外,是則儲存到result陣列中

    if (input[indexInp] "Z")

    {

    result[indexRes] = input[indexInp];

    indexRes++;

    }

    indexInp++;

    }

    //輸出結果

    printf("%s", result);

    }

  • 中秋節和大豐收的關聯?
  • 怎麼把十六進位制數,轉換成ascii字元?