Darlena @ 2017-08-29 18:29:14
如题,C++语言编译的,本地测试都过了,提交每次都显示strlen函数错误,是不给用吗?
#include<stdio.h>
#include<iostream>
using namespace std;
int main()
{
char s[11]={'\0'};
int L=0,R,i;
scanf("%s",&s);
R=strlen(s)-1;
if (s[0]=='-')
{
printf("-");
L++;
}
while (s[R]=='0')
R--;
for (i=R;i>=L;i--)
printf("%c",s[i]);
getchar();getchar();
return 0;
}
by 和泉正宗 @ 2017-08-29 18:37:27
加一个头文件
#include<cstring>