標題:
字串處理 (六) - 取得字串長度 1
[打印本頁]
作者:
鄭繼威
時間:
2023-3-8 21:17
標題:
字串處理 (六) - 取得字串長度 1
本帖最後由 鄭繼威 於 2023-3-15 17:37 編輯
設計一程式, 能計算使用者輸入的
字串長度
(有幾個字元)
#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;
}
複製代碼
作者:
林劭澧
時間:
2023-3-15 19:49
#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;
}
複製代碼
作者:
黃裕恩
時間:
2023-3-15 19:49
#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;
}
複製代碼
作者:
林劭杰
時間:
2023-3-15 19:57
#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;
}
複製代碼
作者:
李彣
時間:
2023-3-15 20:07
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2