文章列表
写一函数,将两个字符串连接
摘要:#include<stdio.h>#include<string.h>intmain(){charstr1[100],str2[100];gets(str1);gets(str……
写一函数,使输入的一个字符串按反序存放,在主函数中输入输出反序后的字符串。
摘要:#include<stdio.h>#include<string.h>intmain(){chara[1000],l,i;scanf("%s",&a……
问题1095:3n + 1问题(解决一直提交不上问题)
摘要:首先就是先把这个题给读懂,否则就不要去敲代码,否则就是浪费时间,&nbsp;&nbsp;&nbsp;&nbsp;问题描述和分析:该题就是你输入两个数,然后找其中的数,如……
让我来告诉你们错在哪里
摘要:一开始我的代码是这样的:#include<stdio.h>intmain(){&nbsp;intn,i;&nbsp;ints=1,sn=0;&nbsp;scanf(……
求1!+2!...N!,请各位大神帮我看看我这个代码哪里错了?
摘要:#include<stdio.h>intx=1;intmain(){&nbsp;&nbsp;&nbsp;longfab(inta);&nbsp;&n……