| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 379 人关注过本帖
标题:郁闷的一个小问题?请各位指教
只看楼主 加入收藏
源本英明C
Rank: 3Rank: 3
来 自:日本
等 级:论坛游侠
帖 子:113
专家分:154
注 册:2010-5-14
结帖率:85.71%
收藏
已结贴  问题点数:10 回复次数:2 
郁闷的一个小问题?请各位指教
#define N 10
#include<stdio.h>
int convert(b[n],x)
{
  int i,*p,*q;
  p=b;q=p+n-1;
  for(i=0;i<n-m;i++)
   {*(p+x)=*p;}
  for(p=q-x;p<q;p++)
  {b[i]=b[i-x-n];}
}
main()
{int i,j,*p,*q,m,a[N];
 printf("\ninput the numbers:\n");
 for(i=0;i<N;i++)
  {scanf("%d",&a[i]);
  printf("%d ",a[i]);  }
  printf("please input the m:\n");
  scanf("%d",&m);
  if(m>N)printf("error!\n");
  else
   convert(p,m);
   printf("the numbers after convert are:\n");
   printf("%d",a[i]);
  getch();
}

错在哪里?希望大家能帮我指出来。
搜索更多相关主题的帖子: 指教 
2010-05-28 11:01
myhnuhai
Rank: 10Rank: 10Rank: 10
等 级:青峰侠
威 望:3
帖 子:425
专家分:1725
注 册:2010-3-17
收藏
得分:3 
你定义的函数有问题,我大概修改了一下,剩下的你自己找吧!
#define N 10#include<stdio.h>
void convert(int b[N],int x)
{
  int i,*p,*q;
  p=b;q=p+N-1;
  for(i=0;i<N-x;i++)
  *(p+x)=*p;
  for(p=q-x;p<q;p++)
  b[i]=b[i-x-N];
}
main()
{
    void convert(int b[N],int x);
    int i,*p,m,a[N];
printf("\ninput the numbers:\n");
for(i=0;i<N;i++)
  {scanf("%d",&a[i]);
  printf("%d ",a[i]);  }
  printf("please input the m:\n");
  scanf("%d",&m);
  if(m>N)printf("error!\n");
  else
   convert(p,m);
   printf("the numbers after convert are:\n");
   printf("%d",a[i]);
  getch();
}

不要让肮脏的记忆,迷失了原本纯洁的心灵!
2010-05-28 12:07
myhnuhai
Rank: 10Rank: 10Rank: 10
等 级:青峰侠
威 望:3
帖 子:425
专家分:1725
注 册:2010-3-17
收藏
得分:7 
#define N 3
#include<stdio.h>
void convert(int b[N],int x)
{
  int i,*p,*q;
  p=b;q=p+N-1;
  for(i=0;i<N-x;i++)
  *(p+x)=*p;
  for(p=q-x;p<q;p++)
  b[i]=b[i-x-N];
}
main()
{
    void convert(int b[N],int x);
    int i,*p,m,a[N];
    printf("\ninput the numbers:\n");
    for(i=0;i<N;i++)
          scanf("%d",&a[i]);
    for(i=0;i<N;i++)
            printf("%d ",a[i]);
            p=a;//把数组的头地址赋值给指针变量!你没有赋值!
      printf("please input the m:\n");
      scanf("%d",&m);
      if(m>N)
          printf("error!\n");
      else
           convert(p,m);
           printf("the numbers after convert are:\n");
           printf("%d",a[i]);
 getch();
}

不要让肮脏的记忆,迷失了原本纯洁的心灵!
2010-05-28 12:13
快速回复:郁闷的一个小问题?请各位指教
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.035789 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved