Скачиваний:
7
Добавлен:
15.06.2014
Размер:
2.26 Кб
Скачать
unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Buttons, Grids, StdCtrls;

type
TForm1 = class(TForm)
Edit1: TEdit;
Edit2: TEdit;
Label1: TLabel;
Label2: TLabel;
Button1: TButton;
StringGrid1: TStringGrid;
BitBtn1: TBitBtn;
Button2: TButton;
procedure FormCreate(Sender: TObject);
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
const q=100;
type mat=array[1..q,1..q] of integer;



var
Form1: TForm1;
a:mat;
i,j,c,m,n:integer;



implementation

{$R *.dfm}

procedure TForm1.FormCreate(Sender: TObject);
begin
N:=5; edit1.Text:=inttostr(n);
M:=5; edit2.Text:=inttostr(m);
StringGrid1.RowCount:=N+1;
StringGrid1.ColCount:=M+1;
StringGrid1.Cells[0,0]:='Матрица';
for i:=1 to N do
for j:=1 to M do
begin
StringGrid1.Cells[0,i]:=' i='+inttostr(i);
StringGrid1.Cells[j,0]:=' j='+inttostr(j);
end;
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
N:=StrToInt(Edit1.Text);
M:=StrToInt(Edit2.Text);
StringGrid1.RowCount:=N+1;
StringGrid1.ColCount:=M+1;
for i:=1 to N do
for j:=1 to M do
begin
StringGrid1.Cells[0,i]:=' i='+inttostr(i);
StringGrid1.Cells[j,0]:=' j='+inttostr(j);
end;
end;

procedure TForm1.Button2Click(Sender: TObject);
begin
try
for i:=1 to n do
for j:=1 to m do
a[i,j]:=strtoint(stringgrid1.cells[j,i]);
for i:=1 to N do
if i mod 2 = 0 then
for j:=1 to M do
begin
c:=a[i,j];
a[i,j]:=a[i-1,j];
a[i-1,j]:=c;
end;
for i:=1 to n do
for j:=1 to m do
stringgrid1.cells[j,i]:=inttostr(a[i,j]);
except
on ERangeError do
begin
showmessage('Выход за пределы массива.Уменьшите размер массива');
Exit;
end;
on EConvertError do
begin
showmessage('В ячейке отсутствует значение либо число введено не правильно');
Exit;
end;
else
begin
MessageDlg('Возникла неизвестная исключительная ситуация! ',mtError,[mbCancel],0);
Exit;
end;
end;

end;
end.
Соседние файлы в папке 4.15
  • #
    15.06.2014188 б7Project2.dpr
  • #
    15.06.2014876 б7Project2.res
  • #
    15.06.20147.01 Кб7Unit1.dcu
  • #
    15.06.201451 б7Unit1.ddp
  • #
    15.06.20143.16 Кб7Unit1.dfm
  • #
    15.06.20142.26 Кб7Unit1.pas