can someone edit my code become like what i want? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

can someone edit my code become like what i want?

so in my code now when input= 3 3 4 5 3 4 5 3 4 5 output= 3 4 5 3 4 5 3 4 5 but i want to make the output= 9 12 15 (9 from 3+3+3) (12 from 4+4+4) (15 from 5+5+5) https://code.sololearn.com/cjAs33hDXV0I/?ref=app

17th Oct 2018, 4:05 PM
Yoaraci
Yoaraci - avatar
1 Answer
+ 3
I am not that good at c but this works for your example: #include<stdio.h> int main () { int n; scanf ("%d", &n); int t[n][n]; int z[n]; for (int i=0; i<n; i++) { for (int j=0; j<n; j++) { scanf ("%d", &t[i][j]); } } for (int j=0; j<n; j++) { z[j] = 0; for (int i=0; i<n; i++) { z[j] += t[i][j]; } printf ("%d ", z[j]); } printf ("\n"); }
17th Oct 2018, 4:33 PM
Paul
Paul - avatar