实现判断回文字符串 #include #include int main(){ char a[20]; printf("please input the string:\n"); gets(a); int i=0,j=strlen(a)-1,flag=1; while(i
实现判断回文字符串 #include #include int main(){ char a[20]; printf("please input the string:\n"); gets(a); int i=0,j=strlen(a)-1,flag=1; while(i
vs有些函数名为了安全性,会变化一些的。最常见的就是scanf()要变成scanf_s()