Курсовая работа: Разработка приложения для Windows, моделирующего игру "Нечетный" и "Четный"
// соответственные числа по строкам и по столбцам суммируются
for i:=0 to 5 do
for j:=0 to 5 do
if stringGrid1. Cells [i, j]='1' then begin
if stringgrid2. Cells [i, j]='*' then nechet:=nechet+1
else chet:=chet+1 end;
for j:=0 to 5 do
for i:=0 to 5 do
if stringGrid1. Cells [i, j]='1' then begin
if stringgrid2. Cells [i, j]='*' then nechet:=nechet+1
elsechet:=chet+1 end;
// Числа суммируются по главным диагоналям
for j:=0 to 5 do
if stringgrid1. Cells [j, j]='1' then begin
if stringgrid2. Cells [j, j]='*' then nechet:=nechet+1
else chet:=chet+1 end;
for j:=0 to 5 do
if stringgrid1. Cells [j, j]='1' then begin
if stringgrid2. Cells [j, j]='*' then nechet:=nechet+1
elsechet:=chet+1 end;
// Определяется победитель
if chet=nechet Then Edit1. Text:='Ничья, число'+inttostr(chet)
else begin
if nechet>chet then edit1.text:='Выиграл Нечет(пользователь), число '+inttostr(nechet)
else
edit1.text:='Выиграл Чет(компьютер), число '+inttostr(chet);
end;
1: end;
end.