关于Dev c++工程的建立

将随机函数产生的数排序一下。这是用工程做的^O^main.c中#include<iostream>#include<iomanip>#include<ctime>#inc... 将随机函数产生的数排序一下。
这是用工程做的^O^
main.c中
#include <iostream>
#include<iomanip>
#include<ctime>
#include<cstdlib>
#include"sort.c"
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main() {
int a[20];
srand(time(0));
for(int i=0;i<20;i++)
a[i]=rand()%100;
sort(a);
for(int i=0;i<20;i++)
cout<<a[i]<<' ';
return 0;
}

sort.c中
void sort(int *b)
{
int i,j,t;
for(i=0;i<19;i++)
for(j=i+1;j<20;j++)
{
if(b[i]<b[j])
{
t=b[i];
b[i]=b[j];
b[j]=t;
}
}
}
好像是sort文件在main文件的引用出了问题,请问应该怎么改哈?
展开
 我来答
纵痕星空
推荐于2016-08-07 · 超过61用户采纳过TA的回答
知道小有建树答主
回答量:110
采纳率:0%
帮助的人:98.1万
展开全部
你不能这样引用的,你的sort()函数的参数是一个变量指针,而你的数组a可以理解为一个常量指针,所以会报错,正确的方式应该是先定义一个指针指向a数组,然后调用sort();
int *c=a;
sort(c);
for(int i=0;i<20;i++)
cout<<c[i]<<' ';
return 0;
就像这样。
下面给你改了下代码(可以运行得出结果)
#include <iostream>
#include<iomanip>
#include<ctime>
#include<cstdlib>
using namespace std;
void sort(int *b);
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main() {
int a[20];
srand(time(0));
for(int i=0;i<20;i++)
a[i]=rand()%100;
int *c=a;
sort(c);
for(int i=0;i<20;i++)
cout<<c[i]<<' ';
return 0;
}
void sort(int *b)
{
int i,j,t;
for(i=0;i<19;i++)
for(j=i+1;j<20;j++)
{
if(b[i]<b[j])
{
t=b[i];
b[i]=b[j];
b[j]=t;
}
}
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式