Форум программистов, компьютерный форум, киберфорум
Delphi для начинающих
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
3 / 3 / 0
Регистрация: 28.03.2010
Сообщений: 49
1

Простая задача

04.01.2013, 22:26. Показов 441. Ответов 0
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
Сама задача. Я ее уже выполнил на 90 процентов. Осталось мелочь

Вводятся две точки, являющиеся координатами левого верхнего и правого нижнего углов прямоугольника. Программа определяет (выводит в окне), сколько квадрантов захватывает прямоугольник. Главное меню определяет вершину, ко-ординаты которой должны быть одинакового знака. Сектора прямоугольника в разных квадрантах закрашивается в разные цвета. Запуск графического построения - ввод последней координаты. Очистка исходных данных - клавиша "Esc".

Главное меню определяет вершину, ко-ординаты которой должны быть одинакового знака. - вот это не знаю как сделать

Delphi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
unit Unit2;
 
interface
 
uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Menus, Vcl.ExtCtrls;
 
type
  TForm2 = class(TForm)
    Image1: TImage;
    MainMenu1: TMainMenu;
    N1: TMenuItem;
    N2: TMenuItem;
    Label1: TLabel;
    Edit1: TEdit;
    Edit2: TEdit;
    Label2: TLabel;
    Label3: TLabel;
    Label4: TLabel;
    Label5: TLabel;
    Label6: TLabel;
    Edit3: TEdit;
    Edit4: TEdit;
    Label7: TLabel;
    ListBox1: TListBox;
    Button1: TButton;
    Button2: TButton;
    PopupMenu1: TPopupMenu;
    N3: TMenuItem;
    procedure FormClose(Sender: TObject; var Action: TCloseAction);
    procedure Button1Click(Sender: TObject);
    procedure Clear;
    procedure FormCreate(Sender: TObject);
    procedure N3Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
    procedure Edit1KeyPress(Sender: TObject; var Key: Char);
    procedure Edit2KeyPress(Sender: TObject; var Key: Char);
    procedure Edit3KeyPress(Sender: TObject; var Key: Char);
    procedure Edit4KeyPress(Sender: TObject; var Key: Char);
    procedure Edit1Change(Sender: TObject);
    procedure Edit2Change(Sender: TObject);
    procedure Edit3Change(Sender: TObject);
    procedure Edit4Change(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;
 
var
  Form2: TForm2;
  x,y,x2,y2: integer;
 
implementation
 
{$R *.dfm}
 
procedure TForm2.Button2Click(Sender: TObject);
var
a,b,c,d:integer;
bs: TBrushStyle;
begin
if (edit1.Text='') or (edit2.Text='') or (edit3.Text='') or (edit4.Text='')then
begin
messagedlg('Не все данные введены',mtError,[mbOk],0)
end
else begin
  x:=250;
  y:=250;
  x2:=250;
  y2:=250;
  a:=StrToInt(Edit1.Text);
  b:=StrToInt(Edit2.Text);
  c:=StrToInt(Edit3.Text);
  d:=StrToInt(Edit4.Text);
 
if (a<0) and (b<0) then begin
  x:=x+a;
  y:=y-b;
  end;
 
if (c<0) and (d<0) then begin
  x2:=x2+c;
  y2:=y2-d;
  end;
 
  if (a>=0) and (b>=0) then begin
  x:=x+a;
  y:=y-b;
  end;
 
  if (c>=0) and (d>=0) then begin
 x2:=x2+c;
 y2:=y2-d;
  end;
 
  if (a<0) and (b>=0) then begin
  x:=x+a;
  y:=y-b;
  end;
 
 if (c<0) and (d>=0) then begin
  x2:=x2+c;
 y2:=y2-d;
 end;
 
  if (a>=0) and (b<0) then begin
  x:=x+a;
  y:=y-b;
  end;
 
  if (c>=0) and (d<0) then begin
  x2:=x2+c;
  y2:=y2-d;
  end;
 
 
  If (x>=250)and (y<=250)and(x2>=250) and (y2<=250)then
    begin
     ListBox1.Items.Text:='1';
     image1.Canvas.Brush.Color:=clGreen;        // Зеленый
     Image1.Canvas.Rectangle(X,Y,X2,Y2);
    Image1.Canvas.Brush.Style:=bsClear;
    end;
 
    If (x<=250)and (y<=250)and(x2<=250) and (y2<=250)then
    begin
     ListBox1.Items.Text:='2';
     image1.Canvas.Brush.Color:=clBlue;       //Синий
     Image1.Canvas.Rectangle(X,Y,X2,Y2);
     Image1.Canvas.Brush.Style:=bsClear;
    end;
 
  If (x<=250) and(y>=250)and(x2<=250) and (y2>=250)then
    begin
      ListBox1.Items.Text:='3';
      image1.Canvas.Brush.Color:=clRed;       //Красный
     Image1.Canvas.Rectangle(X,Y,X2,Y2);
     Image1.Canvas.Brush.Style:=bsClear;
    end;
 
  If (x>=250)and (y>=250)and(x2>=250) and (y2>=250)then
    begin
    ListBox1.Items.Text:='4';
    image1.Canvas.Brush.Color:=clYellow;        //Желтый
     Image1.Canvas.Rectangle(X,Y,X2,Y2);
     Image1.Canvas.Brush.Style:=bsClear;
    end;
 
    If ((x>250)and (y<250)and(x2<250) and (y2<250)) or ((x<250) and (y<250) and (x2>250) and (y2<250))then
    begin
     ListBox1.Items.Text:='1,2';
     bs:=Image1.Canvas.Brush.Style;
     Image1.Canvas.Brush.Style:=bsClear;
     Image1.Canvas.Rectangle(X,Y,X2,Y2);
 
     image1.Canvas.Brush.Color:=clGreen;
    Image1.Canvas.Rectangle(x,y,250,y2);
 
     image1.Canvas.Brush.Color:=clBlue;
     Image1.Canvas.Rectangle(x2,y2,250,y);
 
     Image1.Canvas.Brush.Style:=bs;
    end;
 
    If ((x<250)and(y<250)and(x2<250)and(y2>250)) or ((x<250) and (y>250) and (x2<250) and (y2<250))then
    begin
       ListBox1.Items.Text:='2,3';
       bs:=Image1.Canvas.Brush.Style;
       Image1.Canvas.Brush.Style:=bsClear;
       Image1.Canvas.Rectangle(X,Y,X2,Y2);
 
       image1.Canvas.Brush.Color:=clBlue;
       Image1.Canvas.Rectangle(x,y,x2,250);
 
       image1.Canvas.Brush.Color:=clRed;
       Image1.Canvas.Rectangle(x2,y2,x,250);
 
       Image1.Canvas.Brush.Style:=bs;
    end;
 
  If ((x<250)and(y>250)and(x2>250)and(y2>250)) or ((x>250) and (y>250) and (x2<250) and (y2>250))then
    begin
      ListBox1.Items.Text:='3,4';
       bs:=Image1.Canvas.Brush.Style;
       Image1.Canvas.Brush.Style:=bsClear;
       Image1.Canvas.Rectangle(X,Y,X2,Y2);
 
        image1.Canvas.Brush.Color:=clYellow;
    Image1.Canvas.Rectangle(x,y,250,y2);
 
     image1.Canvas.Brush.Color:=clRed;
     Image1.Canvas.Rectangle(x2,y2,250,y);
 
 
       Image1.Canvas.Brush.Style:=bs;
    end;
 
 If ((x>250)and(y>250)and (x2>250)and(y2<250)) or ((x>250) and (y<250) and (x2>250) and (y2>250))then
    begin
      ListBox1.Items.Text:='1,4';
       bs:=Image1.Canvas.Brush.Style;
       Image1.Canvas.Brush.Style:=bsClear;
       Image1.Canvas.Rectangle(X,Y,X2,Y2);
 
       image1.Canvas.Brush.Color:=clYellow;
       Image1.Canvas.Rectangle(x,y,x2,250);
 
       image1.Canvas.Brush.Color:=clBlue;
       Image1.Canvas.Rectangle(x2,y2,x,250);
 
       Image1.Canvas.Brush.Style:=bs;
    end;
 
    If ((x>250)and(y>250)and(x2<250)and(y2<250)) or ((x<250) and (y<250) and (X2>250) and (y2>250)) or ((x>250) and (y<250) and (x2<250) and (y2>250)) or ((x<250) and (y>250) and (x2>250) and (y2<250))then
    begin
    ListBox1.Items.Text:='1,2,3,4';
      bs:=Image1.Canvas.Brush.Style;
       Image1.Canvas.Brush.Style:=bsClear;
       Image1.Canvas.Rectangle(X,Y,X2,Y2);
 
       image1.Canvas.Brush.Color:=clGreen;
       Image1.Canvas.Rectangle(x,y,250,250);
 
       image1.Canvas.Brush.Color:=clBlue;
       Image1.Canvas.Rectangle(x,y2,250,250);
 
       image1.Canvas.Brush.Color:=clRed;
       Image1.Canvas.Rectangle(x2,y2,250,250);
 
       image1.Canvas.Brush.Color:=clYellow;
       Image1.Canvas.Rectangle(x2,y,250,250);
 
       Image1.Canvas.Brush.Style:=bs;
    end;
  end;
end;
 
procedure TForm2.Clear;
var i, k:integer;
begin
Image1.Canvas.Pen.Width:=1;
Image1.Canvas.pen.Color:=clBlack;
image1.Canvas.Brush.Color:=clwhite;
image1.Canvas.Rectangle(0,0,500,500);
image1.Canvas.MoveTo(250,0); image1.Canvas.LineTo(250,500);
image1.Canvas.MoveTo(0,250); image1.Canvas.LineTo(500,250);
k:=50;
for i:=1 to 9 do begin
image1.Canvas.MoveTo(247,k); image1.Canvas.LineTo(254,k);
image1.Canvas.MoveTo(k,247); image1.Canvas.LineTo(k,254);
image1.Canvas.TextOut(k-9,257,inttostr(k-250));
if k<>250 then image1.Canvas.TextOut(223,k-7,inttostr(-k+250));
k:=k+50;
end;
end;
 
 
 
procedure TForm2.Edit1Change(Sender: TObject);
var
u:integer;
begin
try
u:=StrToInt(Edit1.Text);
if u>250 then
  begin
  ShowMessage('Превышен диапозон допустимого положительного значения');
    edit1.Text:='0';
  end;
if u<-250 then
  begin
  ShowMessage('Превышен диапозон допустимого отрицательного значения');
    edit1.Text:='0';
  end;
except
 //edit1.Text:='0';
end;
end;
 
procedure TForm2.Edit1KeyPress(Sender: TObject; var Key: Char);
begin
  case Key of
    #8,'0'..'9':   ;  // цифры и клавиша <Backspace>
    '.',',':          // разделитель целой и дробной частей числа
             begin
               if Key<>DecimalSeparator then
                    key:=DecimalSeparator;   // заменим разделитель на допустимый
               if Pos(DecimalSeparator,edit1.Text)<>0 then
                    key:=Chr(0);            // запрет ввода второго разделителя
             end;
    '-':     // минус можно ввести только первым символом, т.е. когда ячейка пустая
             if length(edit1.Text)<>0 then
                    key:=chr(0);
    else  // остальные символы
          key:=Chr(0);
  end;
end;
 
procedure TForm2.Edit2Change(Sender: TObject);
var
u:integer;
begin
try
u:=StrToInt(Edit2.Text);
if u>250 then
  begin
  ShowMessage('Превышен диапозон допустимого положительного значения');
    edit2.Text:='0';
  end;
if u<-250 then
  begin
  ShowMessage('Превышен диапозон допустимого отрицательного значения');
    edit2.Text:='0';
  end;
except
 //edit1.Text:='0';
end;
end;
 
procedure TForm2.Edit2KeyPress(Sender: TObject; var Key: Char);
begin
  case Key of
    #8,'0'..'9':   ;  // цифры и клавиша <Backspace>
    '.',',':          // разделитель целой и дробной частей числа
             begin
               if Key<>DecimalSeparator then
                    key:=DecimalSeparator;   // заменим разделитель на допустимый
               if Pos(DecimalSeparator,edit2.Text)<>0 then
                    key:=Chr(0);            // запрет ввода второго разделителя
             end;
    '-':     // минус можно ввести только первым символом, т.е. когда ячейка пустая
             if length(edit2.Text)<>0 then
                    key:=chr(0);
    else  // остальные символы
          key:=Chr(0);
  end;
end;
 
procedure TForm2.Edit3Change(Sender: TObject);
var
u:integer;
begin
try
u:=StrToInt(Edit3.Text);
if u>250 then
  begin
  ShowMessage('Превышен диапозон допустимого положительного значения');
    edit3.Text:='0';
  end;
if u<-250 then
  begin
  ShowMessage('Превышен диапозон допустимого отрицательного значения');
    edit3.Text:='0';
  end;
except
 //edit1.Text:='0';
end;
end;
 
procedure TForm2.Edit3KeyPress(Sender: TObject; var Key: Char);
begin
  case Key of
    #8,'0'..'9':   ;  // цифры и клавиша <Backspace>
    '.',',':          // разделитель целой и дробной частей числа
             begin
               if Key<>DecimalSeparator then
                    key:=DecimalSeparator;   // заменим разделитель на допустимый
               if Pos(DecimalSeparator,edit3.Text)<>0 then
                    key:=Chr(0);            // запрет ввода второго разделителя
             end;
    '-':     // минус можно ввести только первым символом, т.е. когда ячейка пустая
             if length(edit3.Text)<>0 then
                    key:=chr(0);
    else  // остальные символы
          key:=Chr(0);
  end;
end;
 
procedure TForm2.Edit4Change(Sender: TObject);
var
u:integer;
begin
try
u:=StrToInt(Edit4.Text);
if u>250 then
  begin
  ShowMessage('Превышен диапозон допустимого положительного значения');
    edit4.Text:='0';
  end;
if u<-250 then
  begin
  ShowMessage('Превышен диапозон допустимого отрицательного значения');
    edit4.Text:='0';
  end;
except
 //edit1.Text:='0';
end;
end;
 
procedure TForm2.Edit4KeyPress(Sender: TObject; var Key: Char);
begin
  case Key of
    #8,'0'..'9':   ;  // цифры и клавиша <Backspace>
    '.',',':          // разделитель целой и дробной частей числа
             begin
               if Key<>DecimalSeparator then
                    key:=DecimalSeparator;   // заменим разделитель на допустимый
               if Pos(DecimalSeparator,edit4.Text)<>0 then
                    key:=Chr(0);            // запрет ввода второго разделителя
             end;
    '-':     // минус можно ввести только первым символом, т.е. когда ячейка пустая
             if length(edit4.Text)<>0 then
                    key:=chr(0);
    #13:     button2.SetFocus;
    else  // остальные символы
          key:=Chr(0);
  end;
end;
 
 
procedure TForm2.Button1Click(Sender: TObject);
begin
application.Terminate;
end;
 
procedure TForm2.FormClose(Sender: TObject; var Action: TCloseAction);
begin
application.Terminate;
end;
 
procedure TForm2.FormCreate(Sender: TObject);
begin
Clear;
end;
 
procedure TForm2.N3Click(Sender: TObject);
begin
//edit1.Text:='0';
//edit2.Text:='0';
//edit3.Text:='0';
//edit4.Text:='0';
ListBox1.Items.Text:='';
Clear;
end;
 
end.
0
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
04.01.2013, 22:26
Ответы с готовыми решениями:

Вроде задача простая, но сделать не могу
Есть текстовый файл в котором N количество строк. Задача такая: Взять из этого файла Z рандомных...

Работа с Ini-файлами, простая задача (считывание)
Помогите сделать так, чтоб выбирая породу из ComboBox (которая берется из Ini файла), выводилась...

Стрелялка простая
Народ, всем привет! Ка написать игру??? Я вообще не понимаю как это можно реализовать! =(...

Простая задача
В первой форме выбираем группу и воспитателя(пусть будет 2 группы и 2 воспитаетля) таблица...

0
04.01.2013, 22:26
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
04.01.2013, 22:26
Помогаю со студенческими работами здесь

Простая задача
Помогите пожалуйста решить. Имеется в наличии 3 арбуза. Найти самый тяжелый. Примечание: решить...

Простая задача
Друзья, в общем если нарушаю какие-либо правила заранее извиняюсь. В общем говорю честно я студент,...

простая задача на с
Здравствуйте! Помогите пожалуйста написать программу на языке С. &quot;Пусть задан файл целых чисел....

Простая задача
Написать программу для вычисления значения у, не используя логические операции(использофать IF)....


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
1
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru