constDays : array[0..12]of integer= (0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365);那个等号是干么的
參考答案:pascal里面常量定义的时候,是用等号,比如:
const m=1000;
而这里是常量数组,也是一样的,格式是:
a: array[1..max]of integer(类型)= (××,××,××,……);
一定要用等号啊。
如果是type的话,格式是
type arr=array[1..max]of ×××;
var st:arr;