標題:
字串處理 (七) - 取得字串長度 2
[打印本頁]
作者:
tonyh
時間:
2020-5-22 19:52
標題:
字串處理 (七) - 取得字串長度 2
同上題, 運用 string 變數搭配 size() 函式或 length() 函式, 回傳使用者輸入的字串長度(有幾個字元)
作者:
董宸佑
時間:
2020-5-22 20:01
#include<cstdlib>
#include<iostream>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串: ";
getline(cin,str);
cout<<"長度為:"<<str.length()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林政瑜
時間:
2020-5-22 20:03
#include<cstdlib>
#include<iostream>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串: ";
getline(cin,str);
cout<<"長度為:"<<str.length()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃宥華
時間:
2020-5-22 20:04
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string o;
cout<<"請輸入一串英文字";
getline(cin,o);
cout<<"有"<<o.length()<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡忻霓
時間:
2020-5-22 20:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
char str[50];
cout<<"輸入一字串: ";
cin.getline(str,50);
for(int i=0; str[i]!=NULL; i++)
sum++;
cout<<"本字串共包含: "<<sum<<" 個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥穎
時間:
2020-5-22 20:06
#include<cstdlib>
#include<iostream>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串: ";
getline(cin,str);
cout<<"長度為:"<<str.length()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
孫嘉駿
時間:
2020-5-22 20:09
#include<cstdlib>
#include<iostream>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串: ";
getline(cin,str);
cout<<"長度為:"<<str.length()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李宇澤
時間:
2020-5-22 20:12
#include<cstdlib>
#include<iostream>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串: ";
getline(cin,str);
cout<<"長度為:"<<str.length()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃辰昊
時間:
2020-5-23 11:50
#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://istak.org.tw/seed/)
Powered by Discuz! 7.2