| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 464 人关注过本帖
标题:用选择法对十个整数排序的程序bug
取消只看楼主 加入收藏
梁菜鸟
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2011-8-31
结帖率:50%
收藏
已结贴  问题点数:20 回复次数:1 
用选择法对十个整数排序的程序bug
#include<stdio.h>
void main()
{
 int a[10],i,*p;
 p=a;
 for(i=0;i<10;i++)
     scanf("%d",p++);
 p=a;
 void sort(int x[],int n);
 sort(p,10);
 for(p=a;i=0;i<10;i++)
 {printf("%d",*p); p++;}
}
void sort(int x[],int n)
{
 int i,j,k,t;
 for(i=0;i<n-1;i++)
 {k=i;
 for(j=i+1;j<n;j++)
     if(x[j]<x[k])k=j;
     if(k!=i)
     {
      t=x[i];
      x[i]=x[k];
      x[k]=t;
     
     }
 }

}:\编程\ff.cpp(11) : error C2146: syntax error : missing ')' before identifier 'i'
E:\编程\ff.cpp(11) : warning C4552: '<' : operator has no effect; expected operator with side-effect
E:\编程\ff.cpp(11) : error C2059: syntax error : ';'
E:\编程\ff.cpp(11) : error C2059: syntax error : ')'
E:\编程\ff.cpp(12) : error C2143: syntax error : missing ';' before '{'
执行 cl.exe 时出错.

ff.exe - 1 error(s), 0 warning(s)
请问哪出了问题?检查几遍了
搜索更多相关主题的帖子: 编程 include before 
2011-09-03 19:56
梁菜鸟
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2011-8-31
收藏
得分:0 
谢谢了!!!
2011-09-06 23:14
快速回复:用选择法对十个整数排序的程序bug
数据加载中...
 
   



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

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