Home
О нас
Products
Services
Регистрация
Войти
Поиск
modgood
@modgood
July 2022
1
31
Report
Напишите программу, которая следующий образ экрана. (использование вложенных циклов обязательно)
Образ:
****
++++
****
++++
Please enter comments
Please enter your name.
Please enter the correct email address.
Agree to
terms of service
You must agree before submitting.
Send
Answers & Comments
petyaGavrikov
Verified answer
Var n,i,j:integer;
begin
write('n (четное) = ');
readln(n);
for i:=1 to n div 2 do
begin
for j:=1 to n do write('*');
writeln;
for j:=1 to n do write('+');
writeln;
end;
end.
Пример:
n (четное) = 6
******
++++++
******
++++++
******
++++++
0 votes
Thanks 0
×
Report "Напишите программу, которая следующий образ экрана. (использование вложенных цик..."
Your name
Email
Reason
-Select Reason-
Pornographic
Defamatory
Illegal/Unlawful
Spam
Other Terms Of Service Violation
File a copyright complaint
Description
Helpful Links
О нас
Политика конфиденциальности
Правила и условия
Copyright
Контакты
Helpful Social
Get monthly updates
Submit
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Var n,i,j:integer;begin
write('n (четное) = ');
readln(n);
for i:=1 to n div 2 do
begin
for j:=1 to n do write('*');
writeln;
for j:=1 to n do write('+');
writeln;
end;
end.
Пример:
n (четное) = 6
******
++++++
******
++++++
******
++++++