I can't get this program to run. If anyone can help it would be appreciated
program
cooking contest; //name of program//
var
company_name,team_name,winning_team,winning_company:string;
pres_score,palp_score,prep_score,i:integer;
counter:integer;
highest:real;//assigning variables//
company array[1..20] of string;
team array[1..20] of string;
score array[1..20] of real;//declaaring arrays//
begin
i=1;
writeln('please enter a company name');
readln(company_name);
readln();
while(company_name <>)
begin
company_name[1]
writeln('enter the team name associated with the entered company');
readln(team_name);
team=team_name;
writeln('enter points scored for presentation');
readln(pres_score);
writeln('enter points scored for palpability');
readln(palp_score);
writeln('enter points scored for preparation');
readln(prep_score);
score=pres_score+palp_score+prep_score;
i=i+1;
writeln('enter company name');
readln(company_name);
end
i=1;
highest=0;
while(i<=20) do
begin
highest:=score[1];
winning_company:=company_name[1];
winning_team:=team_name[1];
end;
i=i+1;
end;
writeln('the winning company is',winning_company);
writeln('the winning team is',winning_team);
writeln('the winning team scored',highest);
i=1;
counter:=0;
while(i<=20)
do
begin
if(score>=250 points)then
begin
counter=counter+1;
writeln('team has reccieved more than 250 points',team_name);
end;
i=i+1;
end;
writeln('the total amount of teams that recieved more than 250 points is',counter);
end.