wab


私信TA

用户名:comes

访问量:9890

签 名:

越努力,越幸运!

等  级
排  名 794
经  验 3733
参赛次数 1
文章发表 16
年  龄 18
在职情况 学生
学  校 北京邮电大学
专  业 计算机专业

  自我简介:

来来来,做完这一题,还有下一题.

解题思路:
不知道为什么会超时,求大神帮助。
注意事项:

参考代码

#include<stdio.h>
int main()
{
     char str[1000],ch,i,j=0,count=0;
     while((ch=getchar())!='\n')
     {
          for(i=count;i>=0;i--)
          {
           str[i]=str[i-1];
          }
          str[0]=ch;
          count++;
     }
     str[count]='\0';
     printf("%s",str);
     return 0;
}

 

0.0分

0 人评分

  评论区

你的count等于0呢。。
2019-06-28 10:10:33
  • «
  • 1
  • »