標題:
字串處理 (六) - 取得字串長度 1
[打印本頁]
作者:
tonyh
時間:
2014-7-12 17:58
標題:
字串處理 (六) - 取得字串長度 1
本帖最後由 tonyh 於 2014-7-26 17:47 編輯
設計一程式, 能計算使用者輸入的字串長度(多少字元)
[attach]926[/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;
}
複製代碼
作者:
張峻瑋
時間:
2014-7-26 16:40
#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;
}
複製代碼
作者:
張郁庭
時間:
2014-7-26 16:41
#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;
}
複製代碼
作者:
張彥承
時間:
2014-7-26 16:47
#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;
}
複製代碼
作者:
李允軒
時間:
2014-7-26 16:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[100];
int sum = 0;
cout << "請輸入任一個字串";
cin.getline(str,100);
for(int i = 0; str[i] != NULL; i++)
sum++;
cout << "你輸入的字串有" << sum << "個字" << endl;
system("pause");
return 0;
}
複製代碼
作者:
林宇翔
時間:
2014-7-26 16:48
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
char str[100];
int ans = 0;
cout <<"請輸入一任意字串:" ;
cin.getline(str,100);
for(int i = 0;str[i]!=NULL;i++)
ans++;
cout <<"本字串的長度為"<<ans<<"字元"<< endl;
system("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2014-7-31 15:26
#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;
}
複製代碼
作者:
周雍程
時間:
2014-7-31 15:26
本帖最後由 周雍程 於 2014-7-31 15:29 編輯
#include<iostream>
#include<cstdlib>
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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2