lobanosky162
?>

Код очистки экрана и установления желтого фона: (стр 134) * screen.display((255, 255, 0))screen.fill((0, 255, 255))screen.fill((255, 255, 0)​

Информатика

Ответы

prohorovalena
Private Sub Command1_Click()
Form1.Shape1.Visible = True
Form1.Shape2.Visible = True
Form1.Shape3.Visible = True
Form1.Shape4.Visible = True
Form1.Shape5.Visible = Falce
Form1.Shape6.Visible = Falce
Form1.Shape7.Visible = Falce
Form1.Shape8.Visible = Falce
End Sub
Private Sub Command2_Click()
Form1.Shape5.Visible = True
Form1.Shape6.Visible = True
Form1.Shape7.Visible = True
Form1.Shape8.Visible = True
Form1.Shape1.Visible = Falce
Form1.Shape2.Visible = Falce
Form1.Shape3.Visible = Falce
Form1.Shape4.Visible = Falce
End Sub
dima-pashkovec
1)Немного не понял фразу "меньше данного числа 2". Если найти сумму всех элементов, которые меньше двух в массиве размером 20 элементов, то это 

var s,i:longint;
m:array[1..100] of integer;
begin
for i:=1 to 20 do
 read(m[i]);
s:=0;
for i:=1 to 20 do
 if m[i]<2 then s:=s+m[i];

writeln(s);
end.
2)
var i:longint;
m:array[1..100] of integer;
begin
for i:=1 to 20 do
read(m[i]);

for i:=1 to 20 do
if (m[i] mod 5=3) then writeln(m[i]);
end.

3) var a,b,i:longint;
m:array[1..100] of real;
begin
read(a);
read(b);
for i:=1 to 20 do
read(m[i]);
for i:=1 to 20 do
if (m[i]>=a) and (m[i]<=b) then writeln(i);
end.

4)var
o,s,i:longint;
m:array[1..100] of integer;
begin
for i:=1 to 20 do
begin
read(m[i]);
s:=s+m[i];
end;

o:=s div 20;

for i:=1 to 20 do
if m[i]>o then writeln(m[i]);
end.
 
прощения, если есть ошибки в синтаксисе. Нет возможности проверить в компиляторе

Ответить на вопрос

Поделитесь своими знаниями, ответьте на вопрос:

Код очистки экрана и установления желтого фона: (стр 134) * screen.display((255, 255, 0))screen.fill((0, 255, 255))screen.fill((255, 255, 0)​
Ваше имя (никнейм)*
Email*
Комментарий*

Популярные вопросы в разделе

info122
Galinova2911
Васенкова204
samogon-mozhaisk
Павел
aniramix
veniaminsem
TSKaraulova
nailya-abdulova25
yorestov
borisrogovpr3407
Валерьевна1601
Olenkalebedeva4477
fullhouse9991
Маринина_Елена