返回列表 發帖

[5/25 作業3] 字串處理 (十) - 判斷大小寫

本帖最後由 李泳霖 於 2024-6-1 09:58 編輯

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一字串(包含空白,100字內): ";
  9.     getline(cin,str);
  10.     cout<<"每個字元之大小寫依序為: "<<endl;
  11.     for(int i=0; i<str.length(); i++)
  12.     {
  13.         cout<<"第"<<i+1<<"個字元的ASCII碼為"<<int(str[i])<<", ";
  14.         if(int(str[i])>=97 && int(str[i])<=122)
  15.              cout<<"小寫!"<<endl;
  16.         else if(int(str[i])>=65 && int(str[i])<=90)
  17.              cout<<"大寫!"<<endl;
  18.         else
  19.              cout<<"該字元不是英文字母!"<<endl;
  20.     }
  21.     system("pause");
  22.     return 0;   
  23. }
複製代碼
istak.teach2@gmail.com

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表