I don't understand c++ | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I don't understand c++

Can u help me :( Void main() Int a[3][3]= {{1,2,3},{4 ,5, 6},{7,8,9}}; Int n=3,i,j; For(i=1;i<n;i++) For(j=1;j<n;j++) If(i%j==0) cout<<a[i][j]<<endl; } The output is 5 8 9 The q is what is i and j?

5th May 2018, 8:33 PM
Razan
Razan  - avatar
3 Answers
+ 5
its better for you to start learn lessons provided by solo learn . now, the updated versions of C and C++ lessons are there
26th May 2018, 3:48 PM
Prabhat
Prabhat - avatar
+ 4
Razan Rosie Well i and j is a fish company: http://www.ij.co.za/ Seriously, as Ace explained, they're used to index the 2D array. Nirkasder int n=3; This declares a variable called n of int type and assigns it a value of 3 (initialization). int i,j; Creates two variables of int type (no initialization). Sooo: int n=3,i,j; Does all the above!
5th May 2018, 9:02 PM
non
0
int n=3,i,j; What is it??? I can not understand what program you wanted to write
5th May 2018, 8:44 PM
Nirkasder
Nirkasder - avatar