https://youtu.be/J4rfqn8ttJ0
للاستفسار:
Telegram: https://t.me/DaRk_ChAoS69
Instagram: https://www.instagram.com/3qem
Facebook: https://www.facebook.com/3qem.f0r3v3r/
مرحبا بكم في قناة "شروحات وحلول ماتلاب و C++" على تطبيق تيليجرام! هذه القناة هي المكان المثالي لكل من يبحث عن شروحات وحلول في مجالي برمجة ماتلاب و C++. سواء كنت مبتدئًا في تعلم هاتين اللغتين البرمجيتين أو خبيرًا محترفًا تبحث عن حلول لمشاكل برمجية معقدة، فإن هذه القناة ستكون مرجعك الأساسي. يمكنك الاستفادة من الدروس التعليمية المفصلة والشروح الواضحة التي تقدمها القناة لتعزيز مهاراتك في كتابة البرامج باستخدام ماتلاب و C++. ستجد هنا أيضًا حلولًا للمشاكل الشائعة التي تواجه البرمجيين والمطورين الناشئين. انضم اليوم إلى قناتنا على تيليجرام وابدأ رحلتك في عالم برمجة ماتلاب و C++ لتحقق أهدافك البرمجية بنجاح!
16 Nov, 21:19
16 Jul, 18:50
06 Jul, 14:06
06 Jul, 09:04
05 Jul, 00:46
29 Jun, 20:37
28 Jun, 20:58
10 Jun, 20:57
18 May, 20:16
17 May, 18:33
15 Feb, 20:34
02 Feb, 17:41
02 Feb, 17:36
#include<iostream.h>
#include<conio.h>
main ()
{
int A[6]= {10, 20, 30, 40, 50, 60};
cout<<"A= "; for (int i=0;i<=5;i++)
cout<<A[i]<<" ";cout<<""<<endl;
cout<<"B= "; for (int i=0;i<=5;i++) cout<<A[i]<<" ";
getch ();
}
02 Feb, 16:53
#include<iostream.h>Results:
#include<conio.h>
main ()
{
int a[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9 ,10}, b[10]={1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
int n, i;
cout<<"Enter a number: ";
cin>>n;
for (i=0; i<10; i++)
{
if (a[i] ==n)
{
cout<<"Index of "<<n<<" is "<<i<<endl;
break;
}
}
if(i ==10)
cout<<n<<" is not in the array";
int c,m;
cout<<"Enter a number: ";
cin>>c;
for (m=0;m<10;m++)
{
if(b[m]==c)
{
cout<<"Index of "<<c<<" is "<<m<<endl;
break;
}
}
if(m==10)
cout<<c<<" is not in the array";
getch();
}
02 Feb, 16:36
#include<iostream.h>Results:
#include<conio.h>
main ()
{
int a[10]={1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
int n, i;
cout<<"Enter a number: ";
cin>>n;
for (i=0;i<10;i++)
{
if (a[i]==n)
{
cout<<"Index of "<<n<<" is "<<i<<endl;
break;
}
}
if (i==10)
cout<<n<<" is not in the array";
getch ();
}
02 Feb, 14:08
#include<iostream.h>
#include<conio.h>
main()
{
float a[8]={ 4.3, -2.2, 33, 51, -39.5, 2.9, 6.5,
78},x;
for(int i=0;i<8;i++) cout<<a[i]<<'\t';
cout<<endl;
for(int i=7;i>0;i--)
for(int j=0;j<i;j++)
if(a[j]<a[j+1]){
x=a[j];
a[j]=a[j+1];
a[j+1]=x;
}
cout<<endl;
for (int m=0;m<8;m++) cout<<a[m]<<'\t';
getch();
}
27 Jan, 20:41