14-04-2005, 03:52
|
|
|
חבר מתאריך: 03.04.03
הודעות: 23,256
|
|
תהנה, הינה התרגיל כולו... :P
program xxx;
var
a:array[1..5,1..5] of integer;
i,h,sum:integer;
begin
randomize;
sum:=0;
writeln('begin ?... - Press Enter');
readln;
for i:=1 to 5 do
for h:=1 to 5 do
a[i,h]:= random(0+10)+1;
writeln('***********');
writeln('The whole Array...');
for i:=1 to 5 do
begin
for h:=1 to 5 do
write(a[i,h],'|');
writeln;
end;
writeln;
writeln('*************');
writeln('The numbers in the line...');
for i:=1 to 4 do
for h:=1 to 4 do
if (i=h)then
write (a[i,h],'+');
write (a[5,5]);
writeln;
writeln('*****************');
writeln('The line that will be calculated...');
for i:=1 to 5 do
begin
for h:=1 to 5 do
begin
if (i=h) then
begin
write (a[i,h]);
sum:=sum+a[i,h];
end
else
write ('#');
end;
writeln;
end;
writeln('**********');
readln;
write ('The sum is:',sum);
readln;
end.
התרגיל מקומפל...
https://2005-uploaded.fresh.co.il/2...14/60976380.exe
נ.ב
הצבוע באדום זה חישוב האלכסון בלולאה...
_____________________________________
נערך לאחרונה ע"י EtEoR בתאריך 14-04-2005 בשעה 03:55.
|