Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~238 People Reached
Favorite Forums
Favorite Tags
Member Avatar for older3

I need to make a program, where must be function. I need to great 4*4 array and that array should be filled with random integers between 0-100. Function of the two 4x4 arrays can be provided and return it to the array, which has the largest sum. And then i …

Member Avatar for est69dog
-1
84
Member Avatar for older3

[CODE] var t:array[1..3,1..3] of integer; i,j:byte; v:text; begin for i:=1 to 3 do for j:=1 to 3 do begin write('Enter elements [',i,',',j,'] '); readln(t[i,j]); end; assign(v,'output.txt'); rewrite(v); for i:= 3 downto 1 do begin for j:= 1 to 3 do write(v, t[i,j], ' ' ); writeln(v); end; close(v); end. [/CODE] …

Member Avatar for FlamingClaw
0
154