返回列表 發帖

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. #include <algorithm>
  5. using namespace std;
  6. int main()
  7. {
  8.    
  9.     char str[50];
  10.     cout<<"輸入字串: ";
  11.     cin.getline(str,50);
  12.     int sum=strlen(str);
  13.    
  14.     cout<<"此字串有 "<<sum<<"個字元"<<endl;
  15.     system("pause");
  16.     return 0;   
  17. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. #include <algorithm>
  5. using namespace std;



  6. int main()
  7. {
  8.    
  9.     string str;
  10.     cout<<"輸入字串: ";
  11.     getline(cin,str);
  12.    
  13.     cout<<"此字串有 "<<str.length()<<"個字元"<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. #include <algorithm>
  5. using namespace std;
  6. int main()
  7. {
  8.     int sum=0;
  9.     char str[50];
  10.     cout<<"輸入字串: ";
  11.     cin.getline(str,50);
  12.     for(int i =0;str[i]!='\0';i++){
  13.         sum=sum+1;
  14.     }
  15.    
  16.     cout<<"此字串有 "<<sum<<"個字元"<<endl;
  17.     system("pause");
  18.     return 0;   
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. #include <algorithm>
  5. using namespace std;



  6. int main()
  7. {
  8.    
  9.     string str;
  10.     cout<<"輸入字串: ";
  11.     getline(cin,str);
  12.     for(int i=0;i<str.size();i++){
  13.         cout<<int(str[i])<<endl;
  14.     }
  15.    
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. #include <algorithm>
  5. using namespace std;



  6. int main()
  7. {
  8.    
  9.     char str[50];
  10.     cout<<"輸入字串: ";
  11.     cin.getline(str,50);
  12.     for(int i=0;i<strlen(str);i++){
  13.         cout<<int(str[i])<<endl;
  14.     }
  15.    
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. #include <algorithm>
  5. using namespace std;
  6. int main()
  7. {
  8.     int n;
  9.     string str="Hello world!";
  10.     cout<<str<<endl;
  11.     cout<<"字元 'l' 的索引位置 (由前往後查找): "<<str.find('l',4)<<endl;
  12.     cout<<"字元 'e' 的索引位置 (由後往前查找): "<<str.rfind('e')<<endl;
  13.    
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

TOP

返回列表