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


  18. }
複製代碼

TOP

返回列表