0
Can anyone teach me array
6 ответов
+ 1
هي مصفوفة أحادية البُعْد تحتوي على عناصر من نفس النوع (المتغير) وتحتوي اللامتين على عدد العناصر فمثلا :; int arr[4] تعني أن المصفوفة إسمها arr من نوع int وعدد عناصرها هي 4 وغير قابلة للزيادة ويعطى لكل عنصر القيمة 0 وإذا أردنا أن نعطي المصفوفة قيمها بهذه الطريقة
int arr[4] ={12 , 2 , 5 , 7};
حيث عنصرها الأول هو 12 دي الموضع 0 ودائما تبدأ المصفوفة بالصفر وإذا قمنا بطبع العنصر الأول والثاني والثالت والرابع على النحو التالي :
cout<< arr[0]<< endl;
cout<< arr[1]<< endl;
cout<< arr[2]<< endl;
cout<< arr[3]<< endl;
لنحصل على : 12
2
5
7
+ 1
كما يمكننا أن نكتب {7 , 5 , 2 , 12} = []int arr
لنترك البرنامج يحدد عدد العناصر أوتوماتيكيا كما يمكننا قراءة عدد العناصر باستعمال for loop مثال :
for( int i=0; i<4; ++i)
{
cout<<arr[i] <<endl;
}
0
Yes, I am not a c++ user, I can explain in java
0
plz can you teach me in c++
0
An array in c++ is basically a list of variables
To declare an array you need to specify its data type , the identifier ( it's name ) and finally its size.
For example to declare an array of integer type containing 3 variable :
int array [ 3 ] = { 1 , 2 , 3 } ;
The array [ 0 ] would contain the value of 1 and array [ 1 ] , the value of 2 .
0
There are so many tutorials online
Why do you need a "tutor" to learn it?
Is it really that hard?