memory location
المكان بالذاكرة, هو مكان لتخزين قيمة, له نوعين اما متغير variable او constant ثابت
امثلة على المتغيرات:
this program print the fullname of me:
#include
using namespace std;
int main()
{
string firstname;
firstname="omar";
string lastname="khaled";
string fullname=firstname+" "+lastname;
cout<
program to print the summation of 2 integers:
#include
using namespace std;
int main()
{
int num1=4;
int num2=10;
int result=num1+num2;
cout<<"result is "<
--------------------------------------------
variable VS constant in c++
variable: وله عدة مسميات مثل متبدل, متحول, متغير
constant: الثابت
المتغير هو مكان بالذاكرة يمكن تغيير قيمته باي وقت, اما الثابت هو مكان بالذاكرة لايمكن تغيير قيمته ابدا بعد وضعها, طبعا معظم الحالات التي ستمر معنا هي متغيرات
write c++ program to calculate and display the area of circle
#include
using namespace std;
int main()
{
cout<<"please enter the radius:";
int radius;
cin>>radius;
const double PI=3.14;
double area=PI*radius*radius;
cout<<"the area of circle is :"<
انشاء متحول و اسناد قيمة له:
int myNum = 5; // Integer (whole number without decimals)
double myFloatNum = 5.99; // Floating point number (with decimals)
char myLetter = 'D'; // Character
string myText = "Hello"; // String (text)
bool myBoolean = true; // Boolean (true or false)
كود جمع متغيرين من نوع integer:
int x = 5;
int y = 6;
int sum = x + y;
cout << sum;
مثال اخر عن جمع متغيرات :
int sum1 = 100 + 50; // 150 (100 + 50)
int sum2 = sum1 + 250; // 400 (150 + 250)
int sum3 = sum2 + sum2; // 800 (400 + 400)
كود تعريف متغير من نوع boolean وطباعته:
bool isCodingFun = true;
bool isFishTasty = false;
cout << isCodingFun; // Outputs 1 (true)
cout << isFishTasty; // Outputs 0 (false)
string firstname="adnan";
string lastname="omar";
string fullname=firstname+" "+lastname;
cout<
string firstname,lastname;
cout<<"enter first name: ";
cin>>firstname;
cout<<"enter last name: ";
cin>>lastname;
string fullname=firstname+" "+lastname;
cout<
//create simple calculater using c++:
double num1,num2;
cout<<"please enter first number:";
cin>>num1;
cout<<"please enter last number:";
cin>>num1;
double summation_result=num1+num2;
double subtraction_result=num1-num2;
double multiplication_result=num1*num2;
double division_result=num1/num2;
cout<<"the summation result is :"<