返回列表 發帖
  1. #include<cstdlib>
  2. #include<string>
  3. #include<iostream>
  4. using namespace std;
  5. int main()
  6. {
  7.     int a=0;
  8.     char str[50];
  9.     cout<<"請輸入一任意英文字串: ";
  10.     cin.getline(str,50);
  11.     for(int i=0;str[i]!=NULL;i++)
  12.         a++;
  13.     cout<<"本字串的長度為"<<a<<"個字元!"<<endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

返回列表