標題:
字串處理 (六) - 取得字串長度 1
[打印本頁]
作者:
陳品肇
時間:
2019-6-15 12:14
標題:
字串處理 (六) - 取得字串長度 1
字串處理 (六) - 取得字串長度 1
[attach]6685[/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-6-15 15:15
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int sum=0;
char s[100];
cout<<"輸入一字串:";
cin.getline(s,100);
for(int i=0; s[i]!=NULL; i++)
{
sum++;
}
cout<<"本字串的長度為"<<sum<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
湯郡一
時間:
2019-6-15 15:16
#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-6-15 15:16
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int sum=0;
char a[100];
cout<<"輸入字串:";
cin.getline(a,100);
for(int i=0;a[i]!=NULL;i++)
{
sum++;
}
cout<<"你輸入的字串裡共有"<<sum<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曲書辰
時間:
2019-6-15 15:16
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int b=0;
char a[100];
cout<<"請輸入一任意字串:";
cin.getline(a,100);
for(int i=0;a[i]!=NULL;i++)
{
b++;
}
cout<<"字串的長度為"<<b<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳孟修
時間:
2019-6-15 15:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
char s[100];
cout<<"請輸入一任意字串: ";
cin.getline(s,100);
for(int i=0; s[i]!=NULL; i++)
{
sum++;
}
cout<<"本字串的長度為"<<sum<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪寬瀧
時間:
2019-6-15 15:18
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int sum = 0;
char jeb[50];
cout<<"請輸入任意一字串"<<endl;
cin.getline(jeb,50);
for(int i=0;jeb[i]!=NULL;i++)
{
sum++;
}
cout<<"本字串的長度為"<<sum<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王瑞喻
時間:
2019-6-15 15:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
char s[50];
cout<<"請輸入一任意英文字串:";
cin.getline(s,50);
for(int i=0;s[i]!=NULL;i++)
sum++
cout<<"本字串的長度為:"<<sum<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2