標題:
[6/8 作業2] substr() 函式
[打印本頁]
作者:
tonyh
時間:
2024-6-8 11:39
標題:
[6/8 作業2] substr() 函式
本帖最後由 tonyh 於 2024-6-8 11:41 編輯
試以 substr() 函式,抓出字串中特定範圍內的字串。
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str="0123456789";
cout<<str.substr(5)<<endl; //56789
cout<<str.substr(2)<<endl; //23456789
cout<<str.substr(3,3)<<endl; //345
cout<<str.substr(7,1)<<endl; //7
system("pause");
return 0;
}
複製代碼
作者:
鄧維成
時間:
2024-6-8 13:23
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str="0123456789";
cout<<str.substr(5)<<endl;//56789
cout<<str.substr(2)<<endl;//23456789
cout<<str.substr(3,3)<<endl;//345
cout<<str.substr(7,1)<<endl;//7
system("pause");
return 0;
}
複製代碼
作者:
邱奕倫
時間:
2024-6-9 20:54
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str="0123456789";
cout<<str.substr(5)<<endl; //56789
cout<<str.substr(2)<<endl; //23456789
cout<<str.substr(3,3)<<endl; //345
cout<<str.substr(7,1)<<endl; //7
system("pause");
return 0;
}
複製代碼
作者:
張仲言
時間:
2024-6-10 10:31
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str="0123456789";
cout<<str.substr(5)<<endl; //56789
cout<<str.substr(2)<<endl; //23456789
cout<<str.substr(3,3)<<endl; //345
cout<<str.substr(7,1)<<endl; //7
system("pause");
return 0;
}
複製代碼
作者:
陳煒翰
時間:
2024-6-10 17:20
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str="0123456789";
cout<<str.substr(5)<<endl; //56789
cout<<str.substr(2)<<endl; //23456789
cout<<str.substr(3,3)<<endl; //345
cout<<str.substr(7,1)<<endl; //7
system("pause");
return 0;
}
複製代碼
作者:
廖和風
時間:
2024-6-11 19:37
#include<bits/stdc++.h>
using namespace std;
int main()
{
string str="0123456789";
cout<<str.substr(5)<<endl;
cout<<str.substr(2)<<endl;
cout<<str.substr(3,3)<<endl;
cout<<str.substr(7,1)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林宜靜
時間:
2024-6-11 19:51
#include<bits/stdc++.h>
using namespace std;
int main()
{
string str="0123456789";
cout<<str.substr(5)<<endl;
cout<<str.substr(2)<<endl;
cout<<str.substr(3,3)<<endl;
cout<<str.substr(7,1)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃彥綺
時間:
2024-6-12 20:50
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str="0123456789";
cout<<str.substr(5)<<endl;
cout<<str.substr(2)<<endl;
cout<<str.substr(3, 3)<<endl;
cout<<str.substr(7, 1)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾湘鋆
時間:
2024-6-14 21:03
#include<iostream>
#include<cstdlib>
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str="0123456789";
cout<<str.substr(5)<<endl;
cout<<str.substr(2)<<endl;
cout<<str.substr(3,3)<<endl;
cout<<str.substr(7,1)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳祈安
時間:
2024-6-14 23:23
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str="0123456789";
cout<<str.substr(5)<<endl;
cout<<str.substr(2)<<endl;
cout<<str.substr(3,3)<<endl;
cout<<str.substr(7,1)<<endl;
system("pause");
retur
複製代碼
作者:
邱思博
時間:
2024-6-15 07:39
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str="0123456789";
cout<<str.substr(5)<<endl;
cout<<str.substr(2)<<endl;
cout<<str.substr(3,3)<<endl;
cout<<str.substr(7,1)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳睿晏
時間:
2024-6-15 08:54
#include<bits/stdc++.h>
using namespace std;
int main()
{
string str="0123456789";
cout<<str.substr(5)<<endl;
cout<<str.substr(2)<<endl;
cout<<str.substr(3,3)<<endl;
cout<<str.substr(7,1)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林弈呈
時間:
2024-6-15 10:07
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str="0123456789";
cout<<str.substr(5)<<endl;
cout<<str.substr(2)<<end
cout<<str.substr(3,3)<<endl;
cout<<str.substr(7,1)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳駿喆
時間:
2024-6-15 10:07
#include<bits/stdc++.h>
using namespace std;
int main()
{
string str="0123456789";
cout<<str.substr(5)<<endl;
cout<<str.substr(2)<<endl;
cout<<str.substr(3.3)<<endl;
cout<<str.substr(7.1)<<endl;
return 0;
}
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2