標題:
字串處理 (六) - 取得字串長度 1
[打印本頁]
作者:
陳品肇
時間:
2019-3-30 16:57
標題:
字串處理 (六) - 取得字串長度 1
設計一程式, 能計算使用者輸入的字串長度(多少字元)
[attach]6229[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
char str[100];
cout<<"請輸入一任意字串: ";
cin.getline(str,100);
for(int i=0; str[i]!=NULL; i++)
sum++;
cout<<"本字串的長度為"<<sum<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡依宸
時間:
2019-3-30 17:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
char str[1000];
cout<<"輸入一字串: ";
cin.getline(str,1000);
for(int i=0;str[i]!=NULL;i++)
{
sum++;
}
cout<<"本單字有"<<sum<<"字元!!!!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳柏霖
時間:
2019-3-30 17:20
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int tim=0;
char x[100];
cout<<"請輸入一段英文字:";
cin.getline(x,100);
for(int i=0; x[i]!=NULL; i++)
tim++;
cout<<"長度為"<<tim<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴偉宸
時間:
2019-3-30 17:21
#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;
}
複製代碼
作者:
蔡季庭
時間:
2019-3-30 17:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
char str[100];
cout<<"請輸入一任意字串: ";
cin.getline(str,100);
for(int i=0; str[i]!=NULL; i++)
sum++;
cout<<"本字串的長度為"<<sum<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴唯陞
時間:
2019-3-30 17:25
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int sum=0;
char str[100];
cout<<"請輸入一串文字"<<endl;
cin.getline(str,100);
for(int i=0;str[i]!=NULL;i++)
sum++;
cout<<"字串長度為"<<sum<<"元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴安利
時間:
2019-4-3 20:52
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int sum=0;
char str[100];
cout<<"輸入一字串: ";
cin.getline(str,100);
for(int i=0; str[i]!=NULL; i++)
sum++;
cout<<"本字串長度為: "<<sum<<"個字元!!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴偉宸
時間:
2019-4-13 15:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
char str[100];
cout<<"請輸入一任意字串: ";
cin.getline(str,100);
for(int i=0; str[i]!=NULL; i++)
sum++;
cout<<"本字串的長度為"<<sum<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2