Home
О нас
Products
Services
Регистрация
Войти
Поиск
BIKENEADIKVATNIY
@BIKENEADIKVATNIY
July 2022
1
14
Report
составить программу , фотографии в помощь
99 БАЛЛОВ
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
a:array[1..5,1..3] of integer;
s,i,j:integer;
begin
for i:=1 to 5 do
for j:=1 to 3 do read(a[i,j]);
s:=0;
for i:=1 to 5 do
for j:=1 to 3 do s:=s+a[i,j];
writeln('s = ',s);
end.
Пример:
5 8 4
3 0 9
1 7 6
2 6 8
7 3 1
s = 70
0 votes
Thanks 0
×
Report "составить программу , фотографии в помощь 99 БАЛЛОВ ..."
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
Vara:array[1..5,1..3] of integer;
s,i,j:integer;
begin
for i:=1 to 5 do
for j:=1 to 3 do read(a[i,j]);
s:=0;
for i:=1 to 5 do
for j:=1 to 3 do s:=s+a[i,j];
writeln('s = ',s);
end.
Пример:
5 8 4
3 0 9
1 7 6
2 6 8
7 3 1
s = 70