fun函数的功能是:从主函数中接收该字符串,判断是否为回文数,如果是返回1,否则返回0; 请尽量的简单的完成FUN函数的代码,使程序运行正确.如,输入LEVEL则输出YES,输入123输出NO #include <stdio.h> #define N 80 int fun(char *str) { } main() { char s[N]; printf("enter a string:");gets(s); p...
//** 函数功能:判断字符串是否为回文 // //** 作者:xt // //** 时间:2013/8/5 // //***// #include "stdio.h" #include "string.h" void main() { char s[10],*head,*end; int flag=1,i=0,len=0; gets(s); for(;s[i]!='\0';i++) len+=1; head=s; end=s+len-1; ...
printf("不是回文数。");return 0;}
//** 函数名称: // //** 函数功能:判断字符串是否为回文 // //** 作 者:xt // //** 时 间:2013/8/5 // //***// #include "stdio.h" #include "string.h" void main() { char s[10],*head,*end; int flag=1,i=0,len=0; gets(s); for(;s[i]!='\0';i++) len+=1; ...
C语言编写一个程序,判断输入的一个字符串是否是回文。 int nonre(long int s)//判断给定的整数是否为回文数 { if(re(s)==s)return 1;//是返回1 else return 0;//不是返回0 } void main(){ long int n,m;int count=0;printf("please input a number optionaly ...