標題:
字串處理 (七) - 取得字串長度 2
[打印本頁]
作者:
鄭繼威
時間:
2023-5-13 01:04
標題:
字串處理 (七) - 取得字串長度 2
同上題, 運用 string 變數搭配
size()
函式或
length()
函式, 回傳使用者輸入的字串長度(有幾個字元)
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
string str;
cout<<"輸入一字串:";
getline(cin,str);
cout<<"你剛輸入的字串長度為:"<<str.length()<<endl;
cout<<"你剛輸入的字串長度為:"<<str.size()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
宜儒
時間:
2023-5-13 14:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str;
cout<<"輸入一字串:";
getline(cin,str);
cout<<"你剛剛輸入的字串長度為:"<<str.length()<<endl; //str.length():可計算字串長度
cout<<"你剛剛輸入的字串長度為:"<<str.size()<<endl; //str.size():可計算字串長度
system("pause");
return 0;
}
複製代碼
作者:
陳宥霖
時間:
2023-5-13 14:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str;
cout<<"輸入一字串:";
getline(cin,str);
cout<<"你輸入的字串長度為:"<<str.length()<<endl;
cout<<"你輸入的字串長度為:"<<str.size()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
翁川祐
時間:
2023-5-13 14:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
string str;
cout<<"輸入一字串:";
getline(cin,str);
cout<<"你剛輸入的字串長度為:"<<str.length()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
葉佳和
時間:
2023-5-13 14:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str;
cout<<"輸入一字串:";
getline(cin,str);
cout<<"字串長度為:"<<str.size()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳泓亦
時間:
2023-5-13 14:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
string str;
cout<<"輸入一字串:";
getline(cin,str);
cout<<"你剛輸入的字串長度為:"<<str.length()<<endl;
cout<<"你剛輸入的字串長度為:"<<str.size()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林雋喆
時間:
2023-5-13 14:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
string str;
cout<<"輸入一字串:";
getline(cin,str);
cout<<"你剛輸入的字串長度為:"<<str.length()<<endl;
cout<<"你剛輸入的字串長度為:"<<str.size()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
徐啟祐
時間:
2023-5-13 14:50
#include<iostream>
#include<cstdlib>
#include<string.h>
using namespace std;
int main()
{
string str;
cout<<"輸入一字串:";
getline(cin,str);
cout<<"你剛輸入的字串長度為:"<<str.length()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳俊頡
時間:
2023-5-17 20:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
string str;
cout<<"輸入一字串:";
getline(cin,str);
cout<<"你剛輸入的字串長度為:"<<str.length()<<endl;
cout<<"你剛輸入的字串長度為:"<<str.size()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳牧謙
時間:
2023-5-19 23:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str;
cout<<"輸入一字串:";
getline(cin,str);
cout<<"你剛輸入的字串長度為:"<<str.length()<<endl;
cout<<"你剛輸入的字串長度為:"<<str.size()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃品禎
時間:
2023-10-7 18:53
#include<iostream>
#include<cstdlib>
#include<string.h>
using namespace std;
int main()
{
string str;
cout<<"請輸入字串"<<endl;
getline(cin,str);
cout<<str.length()<<endl;
cout<<str.size()<<endl;
system ("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2