题解 | #截取字符串#
截取字符串
http://www.nowcoder.com/practice/a30bbc1a0aca4c27b86dd88868de4a4a
#include <string.h>;
#include <iostream>;
using namespace std;
int main()
{
string a;
int b=0;
while(getline(cin, a),cin>>b)
{
for(int i=0;i<b;i++)
{
cout<<a[i];
}
}
return(0);
}
#include <iostream>;
using namespace std;
int main()
{
string a;
int b=0;
while(getline(cin, a),cin>>b)
{
for(int i=0;i<b;i++)
{
cout<<a[i];
}
}
return(0);
}