標題:
字串處理 (七) - 取得字串長度 2
[打印本頁]
作者:
葉桔良
時間:
2023-5-6 14:02
標題:
字串處理 (七) - 取得字串長度 2
本帖最後由 葉桔良 於 2023-5-6 20:07 編輯
同上題, 運用 string 變數搭配 size() 函式或 length() 函式, 回傳使用者輸入的字串長度(有幾個字元)
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一任意英文字串:";
getline(cin,str);
cout<<"本字串的長度為"<<str.length()<<"個字元"<<endl;
system("pause");
return 0; //123456
}
複製代碼
作者:
吳柏融
時間:
2023-5-6 20:16
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一任意英文字串:";
getline(cin,str);
cout<<"本字串的長度為"<<str.length()<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
宥竣
時間:
2023-5-6 20:17
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一任意英文字串:";
getline(cin,str);
cout<<"本字串的長度為"<<str.size()<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
葉權諒
時間:
2023-5-6 20:18
本帖最後由 葉權諒 於 2023-5-6 20:32 編輯
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一任意英文字串:";
getline(cin,str);
cout<<"本字串的長度為"<<str.length()<<"個字元"<<endl;
system("pause");
return 0; //
}
複製代碼
作者:
陳冠霖
時間:
2023-5-6 20:18
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"Enter:";
getline(cin, str);
cout<<"本字串共包含: "<<str.length<<" 個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林哲弘
時間:
2023-5-6 20:18
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一任意英文字串:";
getline(cin,str);
cout<<"本字串的長度為"<<str.size()<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
楊惇翔
時間:
2023-5-6 20:19
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一任意英文字串: ";
getline(cin,str);
cout<<"本子串的長度為"<<str.length()<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王述勳
時間:
2023-5-6 20:22
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一任意英文字串:";
getline(cin,str);
cout<<"本字串的長度為"<<str.size()<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
葉晉維
時間:
2023-5-6 20:27
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一任意英文字串:";
getline(cin,str);
cout<<"本字串的長度為"<<str.length()<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
博勛
時間:
2023-5-6 20:27
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一任意英文字串: ";
getline(cin,str);
cout<<"本字串的長度為"<<str.size()<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
盧禹丞
時間:
2023-5-6 20:28
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一任意英文字串:";
getline(cin,str);
cout<<"本字串的長度為"<<str.length()<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃兆駿
時間:
2023-5-6 20:29
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一任意英文字串:";
getline(cin,str);
cout<<"本字串的長度為"<<str.length()<<"個字元"<<endl;
system("pause");
return 0; //123456
}
複製代碼
作者:
張晏齊
時間:
2023-5-6 20:29
本帖最後由 張晏齊 於 2023-5-6 20:30 編輯
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一任意英文字串:";
getline(cin,str);
cout<<"本字串的長度為"<<str.length()<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
葉權諒
時間:
2023-5-6 20:33
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str
cout<<"請輸入一任意英文字串:";
getline(cin,str);
cout<<"本字串的長度為"<<str.length()<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2