pascal为什么?它总在a:array[1..max]of longint; 在]这里报错? 如能回答 谢谢!

constn=10;vara:array[1..max]oflongint;i:longint;//////////////////////////procedureqs... const n=10;
var a:array[1..max] of longint;
i:longint;
//////////////////////////
procedure qsort(l,r:longint);
var
i,j,m,te:longint;
begin
i:=l;
j:=r;
mid:=a[(l+r)div 2];
repeat
while a[i]<mid do i:=i+1;
while mid<a[j] do j:=j-1;
if i<=j then
begin
te:=a[i];
a[i]=a[j];
a[j]:=te;
i:=i+1;
j:=j-1;
end;
until i>j;
if l<j then qsort(l,j);
if i<r then qsort(i,r);
end;
//////////////////////////
begin
randomize;
for i:=1 to n do a[i]:=random(30000);
writeln('before');
for i:=1 to n do writeln(a[i]:3);
writeln('sorting...');
qsort(1,max);
for i:=1 to n do writel(a[i]:3)
end.
展开
 我来答
宋逸学
2014-07-22
知道答主
回答量:1
采纳率:0%
帮助的人:1357
展开全部
LZ需要把max定义一个值才行、、、pascal中只有pi、maxlongint等可以直接表示常数
gcbjoy
2014-07-22 · TA获得超过1.1万个赞
知道大有可为答主
回答量:1.1万
采纳率:92%
帮助的人:2189万
展开全部
数组的上界max未赋值,自然会出错 !
可以在const中给max赋常数值,如:
const max=10000;
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式