Diophantine linear system solving: Difference between revisions

Content added Content deleted
No edit summary
Line 743: Line 743:


for (r = 0; r <= n - 1; r++) {
for (r = 0; r <= n - 1; r++) {
sprintf(g, "%ld", r + 1);
printf(" row A%ld and b%ld ", r + 1, r + 1);
printf(" row A%s and b%s ", g, g);
fgets(g, 1024, stdin);
fgets(g, 1024, stdin);


Line 980: Line 979:
{{out}}
{{out}}
<pre>The results are exactly the same as those described in the task assignment.</pre>
<pre>The results are exactly the same as those described in the task assignment.</pre>



=={{header|FreeBASIC}}==
=={{header|FreeBASIC}}==