0
陈清宇
初级守护
初级守护
#include<iostream>
#include<cstdio>
#include<cmath>
#include<string>
#include<algorithm>
//#include<windows.h>
using namespace std;
int main()
{
string s,a;
int x,cnt=0;
cin>>s>>x;
for(int i=0;i<s.size();i++)
{
a=s.substr(i,3);
if(a.size()==3)
{
cout<<a<<endl;
cnt++;
}
}
if(cnt==0)
{
cout<<-1;
}
}
运行是对的,但为啥是0分
0
0
余天泽
中级光能
中级光能
- 字符串 s;
- 整形 x;
- 输入s,x;
- if(x>s.size()){
- 输出-1;
- }else{
- for(int i=0;i<s.size();i++){
- 输出s.substr(i,x)<<endl;
- if(x+i==s.size()){
- 结束循环;
- }
- }
- }
0
余天泽
中级光能
中级光能
- 字符串 s;
- 整形 x;
- 输入s,x;
- if(x>s.size()){
- 输出-1;
- }else{
- for(int i=0;i<s.size();i++){
- 输出s.substr(i,x)<<endl;
- if(x+i==s.size()){
- 结束循环;
- }
- }
- }
0