標題:
字串處理 (六) - 取得字串長度 1
[打印本頁]
作者:
鄭繼威
時間:
2022-7-1 01:11
標題:
字串處理 (六) - 取得字串長度 1
本帖最後由 鄭繼威 於 2022-7-9 10:54 編輯
設計一程式, 能計算使用者輸入的字串長度(有幾個字元)
#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;
}
複製代碼
作者:
高昀昊
時間:
2022-7-2 11:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=0;
char str[50];
cout<<"輸入一字串: ";
cin.getline(str,50);
for(int i=0; str[i]!=NULL; i++)
{
x++;
}
cout<<"本字串共包含: "<<x<<" 個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鍾易澄
時間:
2022-7-2 11:59
#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;
}
複製代碼
作者:
柳侑辰
時間:
2022-7-2 12:00
#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;
}
複製代碼
作者:
曾善勤
時間:
2022-7-2 12:01
#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;
}
複製代碼
作者:
高鋐鈞
時間:
2022-7-2 12:02
#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;
}
複製代碼
作者:
田家齊
時間:
2022-7-2 12:03
#include<iostream>
#include<cstdlib>
#include<string.h>
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;
}
複製代碼
作者:
孫子傑
時間:
2022-7-2 12:03
#include<iostream>
#include<cstdlib>
#include<string.h>
using namespace std;
int main()
{
int su=0;
char st[50];
cout<<"輸入一字串:";
cin.getline(st,50);
for(int i=0;st[i]!=NULL;i++){
su++;
}
cout<<"本字串共包含: "<<su<<" 個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許馹東
時間:
2022-7-6 21:58
#include<iostream>
#include<cstdlib>
#include<string.h>
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;
}
複製代碼
作者:
郭博鈞
時間:
2022-7-9 10:43
#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