seregina19706867
?>

Какая фигура рисуется во вложенном цикле?

Информатика

Ответы

Eduard Popik
 Program esep;
var i,j,k,n,sum:integer;
 input,output:text;
a:array[1..100] of integer;
flag:boolean;
begin flag:=false;
Assign(Input,'d.in');
reset(input);
readln(input,n);
assign(output, 'd.out');
rewrite(output);
writeln('Input elements');
readln (n);
for i:=1 to n do read(a[i]);
for i:=1 to n do 
for j:=1 to n do 
for k:=1 to n do 
if (i<>j) and (j<>k) and (i<>k) then
 if a[i]+a[j]+a[k]=0
then
begin
writeln (output,'Yes');
flag:=true;
halt;
end;
if flag=false then writeln(output,'No');
close(input);
close(output);
end.
iqtoy2010
Var i,j,k,n,sum:integer;
 input,output:text;
a:array[1..100] of integer;
flag:boolean;
begin flag:=false;
Assign(Input,'d.in');
reset(input);
readln(input,n);
assign(output, 'd.out');
rewrite(output);
writeln('Input elements');
readln (n);
for i:=1 to n do read(a[i]);
for i:=1 to n do 
for j:=1 to n do 
for k:=1 to n do 
if (i<>j) and (j<>k) and (i<>k) then
 if a[i]+a[j]+a[k]=0 
then
begin
writeln (output,'Yes');
flag:=true;
halt;
end;
if flag=false then writeln(output,'No');
close(input);
close(output);
end.

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

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

Какая фигура рисуется во вложенном цикле?
Ваше имя (никнейм)*
Email*
Комментарий*

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

Alekseevna
Николаевич
abroskin2002
Смирнов_Андрей691
artashhovhan
yurazharov
svetlanam81
dokmak140652
ilyagenius
BirUlek215
Олег1105
l250sp70
Pavlov447
lemoh
fedchenkoofficial