Hello
I have an array of about 8760 numbers. i need to write it in one line in delphi.
if i use the writeln command like this
writeln(array[1],array[2]....so on) it gets really really long. is their a shorter way.
please help.
thanks
1
Expert's answer
2013-12-04T12:57:00-0500
program n1; const n=8760; var i:integer; arr:array[1..n] of real; begin // fill array 'arr' for i:=1 to n do write(arr[i]); end.
Numbers and figures are an essential part of our world, necessary for almost everything we do every day. As important…
APPROVED BY CLIENTS
"assignmentexpert.com" is professional group of people in Math subjects! They did assignments in very high level of mathematical modelling in the best quality. Thanks a lot
Comments
Leave a comment