know yourselves. information, computer, 7 wonders, various.

Monday, November 13, 2017

C++ programming language part: 09 Arithmetic Assignment Operators


Arithmetic Assignment Operators

An assignment operator (=) which combine with an arithmetic operator (+,-,*,/,%) is called Arithmetic Assignment Operators. These are +=, -=, *=, /=, %=.
Int p=p+5 It can be modified as Int p+=5

Exercise 4:  make a program using arithmetic assignment operator

Relational Operators

 There are six relational operators in C++.


Logical Operators: - C++ contains two logical operators.



  
if...else Construct

Attentively follow the following program. The if keyword is followed by the test expression in parentheses. The statements of the If body should be enclosed within curly braces as the header file is enclosed within angler braces
The general form is;
if(condition)
{
   statement 1;
}
else
{
    statement 2;
}
IMAGIN: If rain comes then I will wet (finish) either I will tete-a-tete

Program 9_1
                        // example of if..then..else (ifdemo.c)
                        #include
                        #include
                        void main()
{
char x[10];
int p;
cout<< "What is your name, Please?  ";
cin>>x;
cout<< " How old are you, Please?  ";
cin>>p;
                                    if (p<20 o:p="">
                                    {
                                                cout<<"you,re Young guy/babe  "<
                                    }
                                    else
                                    {
                                                cout<<"you,re old hagared "<
                                      }

                                    getch();
}

Program 9_2

                        // example of if..then..else (ifdemo.c)
                        #include
                        #include
                        void main()
                        {
                                    float p1,p2;
                                    cout<<"Enter first number  ";
                                    cin>>p1;
                                    cout<<"Enter second number  ";
                                    cin>>p2;
                                    if(p1>p2)
                                    {
                                                cout<<"first number is greater than second number"<
                                    }
                                    else
                                    {
                                                cout<<"second number is greater than first number"<
                                    }
                        getch();
                        }

Program 9_3
// example of if..then..else (ifdemo.c)
                        #include
                        #include
                        void main()
{
char x[10];
int p;
cout<< "What is your name, Please?  ";
cin>>x;
cout<< " How old are you, Please?  ";
cin>>p;
                                    if (p<=20)                   
            {
                                                cout<<"you,re Young guy/babe  "<
                                    }
                                    else
                                    {
                                                cout<<"you,re old hagared "<
                                      }

                                    getch();
}
Program 9_4
// example of if..then..else (ifdemo.c)
                        #include
                        #include
                        void main()
{
char x[10];
int p;
cout<< "What is your name, Please?  ";
cin>>x;
cout<< " How old are you, Please?  ";
cin>>p;
                                    if (p<=10 || p>=90)                              {
                                                cout<<"you,re child  "<
                                    }
                                    else
                                    {
                                                cout<<"you,re young guy/babe  "<
                                      }

                                    getch();
}

Program 9_6

// example of if..then..else (ifdemo.c)
#include
#include
void main()
{
char x;
cout<<"type A or a , Please.   ";
cin>>x;

if ((x=='a')||(x=='A'))
{
cout<<"You are correct "<
}
else
{
cout<<"You are incorrect "<
}
getch();
}


Program_9_7 ( If…else…if…else)
            // example of if..then..else (ifdemo.c)
                        #include
                        #include
                void main()

                        {       char x[10];
                                    char y;
                                    int magic=420;
                                    int guess;
                                                           
                                    cout<<"enter your name ";
                                    cin>>x;
                                    cout<<"Enter your guess number ";
                                    cin>>guess;
                                   
                                    if(guess==magic)
                                    {
                                    cout<< "Whhu!! thank u "<
                                    }
                                    else
                                    {
                                    cout<< "Nah! "<
                                    if(guess>magic)
                                    cout<<" Your number is Too high"<
                                    else
                        cout<<" your number is Too low"<
                                    }
                                    getch();
                             }

Program 9_8( If… elseif…if)
                        // example of if..then..else (ifdemo.c)
                        #include
                        #include
                                    void main()
{
char x[10];
                                    int magic=420;
                                    int guess;

                                    cout<<"enter your name ";
                                    cin>>x;
                                    cout<<"Enter your guess number ";
                                    cin>>guess;
                                   
                                    if(guess==magic)
                                    {
                                    cout<< "Whhu!! thank u "<
                                    }
                                    else if(guess>magic)
                                    cout<<" Your number is Too high"<
                                    else
                                    cout<<" your number is Too low"<
                                    getch();
                             }


Exercise:    1) Write a program to identify a number whether that is a even or odd or zero.
                      2) Write a program to decide discount of parentage for selling a TV. condition:-                                           a) for B/W will be 5% b) if color, for 14” will be 10% and c) for 21” will be 20%
                      3) Write a program to accept a year from the user and check whether it is a leap year.

                        Hint: that is divisible by 4 and not divisible by 100, or, divisible by 400.



**************************  ************************

                       Previous Post                                               Next Post



             To find out more, please read the following book
                 বিস্তারিত জানতে নিচের বইটি সংগরহ করে নিন





Summary ( এক নজরে )
Book Name: C++ PROGRAMMING
বইয়ের নাম :সি++ প্রোগামিং
Writer: Bappi Ashraf   লেখক- বাপ্পি আশরাফ
Published By: Gyankosh Prokashani  প্রকাশক- জ্ঞানকোষ প্রকাশনী
Amount of Pages: 228  পৃষ্ঠাসংখ্যা- বড় সাইজে ২২৮ পৃষ্ঠা
First Publish: february 2006  প্রথম প্রকাশ: ফেব্রুয়ারী ২০০৬
Future edition may be existed!
Book Price: BDT 78 with CD  মূল্য- সিডি সহ ৭৮ টাকা মাত্র
The writer of this book has told that he has written this book with the concept of "teach yourself". On the other hand, Web Design is a thing which is interesting to learn. He has also told that the book is full of fan and enjoyment so that a person can learn Web Design by himself by playing with the example projects of this book.  Book's CD Link below... 

যোগাযোগ: 02-7118443, 8623251 বা 58616571 বা 01711271716 (Bappi Ashraf), 01711271718 (Syed Hasan), 01941494063 (Kashem Vai) বা  bappibd001@yahoo.com
লেখকের সাথে যোগাযোগ bappibd001@yahoo.com বা 0258616571, 01716171716





পরিবেশক/প্রাপ্তিস্থান
(সারা বাংলাদেশঘরে বসে কুরিয়ারের মাধ্যমে বই পেতে যোগাযোগ করুন


হক লাইব্রেরী০১৮২০-১৫৭১৮১ 

মানিক লাইব্রেরী-০১৭৩৫-৭৪২৯০৮

জ্ঞানকোষ সাহিন ০১৯১৮-৩১০৫২৯(সারা বাংলাদেশ) 
রকমারি১৬২৯৭০১৫১৯৫২১৯৭১ 

কলকাতায় রিতাএন্ড জিৎ ইন্টারন্যাশনাল ফোনঃ +৯১ ৭০০৩৭৭৩৪৬২৯৮৩৬০৪৬০৬৭,৯৮৩০৪৩৯৬৭৯
পরিবেশক/প্রাপ্তিস্থান (খুচরা  পাইকারি সব ধরণের বই ক্রয় এর জন্য যোগাযোগ করুন) 
ঢাকা  বাংলাবাজার * কাজী ট্রেডার্স্ * আজিজিয়া লাইব্রেরী *রাফিদ বুক হাউস
ঢাকা  নিউমার্কেট  * ঢাকা বুক কর্পোরেশন
ঢাকা  আইডিবি ভবন * বুকস্ এন্ড টেক ভিউ 
উত্তরাটঙ্গি *উত্তরা বুক্স *নিউ বুকস্ সোসাইটি *ব্রাদার্স লাইব্রেরী
সাভার *পপুলার লাইব্রারী
ঢাকা  ফার্মগেট * তোফাজ্জল বুক হাউস * সেলিম বুকস্ 
ঢাকা ষ্টেডিয়াম মার্কেট * অনুপম জ্ঞানভান্ডার
নারায়নগঞ্জ * মমতা লাইব্রারী
ঢাকা  নীলক্ষেত * হক লাইব্রেরী০১৮২০-১৫৭১৮১ * মানিক লাইব্রেরী-০১৭৩৫-৭৪২৯০৮ রানা বুকসেন্টার (০১৭১১-০২১১৩৪) * ফরিদা কর্পোরেশন * * মুক্তা এন্টারপ্রাইজ * সাকিব বুক * পপুলার বুকস

খুলনা *এম এম লাইব্রেরী০১৭১২-৬৬২৭৯০ * সোহাগ বুক ডিপো-০১১৯১-৪২০০০৯ *বিথীপ্রকাশনী-০১৬৭৩-৯০৬৮৭৯ *ফেমাস লাইব্রেরী-০১৭১৫-৯১৫৭৩৮ *বুক সোসাইটি-০১৭১৭-২৩৩৭৪১ *কামাল বুক হাউজ-০১৭১১-২৪৬৫৬২ * শরীফ বুক ডিপো-০১৭১৮-৭৬৮৫১২

সিলেট * পপি লাইব্রেরী -০১৯৫৪-৩০৬৮৬৯ * নিউ নেশন লাইব্রেরী-০১৭১১-১০৩৩৭০ * বন্ধু লাইব্রেরী-০১৭১২-১৬৭৭৩০ *বইমেলা-০১৭১১-৯৪৬৩০৮ * শুভেচ্ছা লাইব্রেরী-০১৭১২৬২৫১৯৩ * মালঞ্চ বুকসেন্টার-০১৭১১৯৯৬০৩২, *সেন্ট্রল লাইব্রেরী-০১৭১১৪৮৪৫৯৫ * প্যারাগন লাইব্রেরী-০১৭১২-০৬৬২২৮
ফরিদপুর * মুসলিম লাইব্রেরী
বগুড়া *নিউজ কর্ণার পাবলিশিং-০১৭১১৪৮৬৮৭১

চট্টগ্রাম * বুক লাইনআন্দরকিল্লা-০১৬৪৫-১৫১৪৫৬ * বুক সেন্টারআন্দরকিল্লা-০৩-২৮৫৩১৬৬ * ফ্রেন্ডসবুকআন্দরকিল্লা -০১৮১৭-৭৫৪১৬৯ * অমর বই ঘরনূপুর মার্কেটষ্টেশন রোড-০১৯৪৭-৮৯৭০৭৫ * নিউবুক ল্যান্ডচকবাজার-০১৮১৯-০৬৫৭৭৭ * দি কাশেম বুকআন্দরকিল্লা-০১৬১৯-৩৬৫১০৩
রংপুর * টাউন ষ্টোর লাইব্রেরী-০১৭১৩-৭২৪১০৬ * মিতা প্রকাশনি -০১৭১৬৩০৪৯৬০ *ইস্ট বেঙ্গললাইব্রেরী-০১৭১১-২০৬৬২৮ *ফেরদৌস লাইব্রেরী-০১৯৩০৭০৬৩৪৬ * মিলন রাইব্রেরী-০১৭১২-২২১৪৪৫
রাজশাহী * প্রাইম বুকস্ ০১৮১৮-৭৭৫৯৩১ * সবুজ লাইব্রেরী-০১৭২৬-৬৪২৮২৮ * বইঘর-০১৯২৭৫৩২৭৩০বুকস্ ভ্যালি-০১৭১১-৩০১৯১৩ * বুক হাউস-০১৭১১-৫৭৪৪৭৬ * বুক সেন্টার-০১৯১২-৪৫৯৭০০ * আশিকলাইব্রেরী-০১৯২০-১৮৫৬০৬
কুষ্টিয়া * বইমেলাএনএসরোড
চুয়াডাঙ্গা * বই নিকেতন-০১৭১৮-৮০১৫০৩ * পুথিঘর লাইব্রেরীবড় বাজার
যশোর * জনতা লাইব্রেরীদড়াটানা * রয়েল বুক ডিপো-০১৭৭৯-৮৮২০৮১
ঝিনাইদহ : * বুক সেন্টার -০১৭১৬-০৩৬১৪৬ * পুস্তক ঘর -০১৭১৮-২৪৬২৭৭ * পুথিঘর ০১৯২৭৯৯০২৮৮
বরিশাল * বুকভিলা *ওরিয়েন্টাল বুক ডিপো
কুমিল্লা *আইডিয়াল লাইব্রের্-ী০১৯২২-৭৬১২৭৩
ময়মনসিং *কবির লাইব্রেরী-০১৭১১-৬৪০৩৮৮ *আহম্মেদ ব্রাদার্স-০১৭১৪-২৪১৪২১*সংকলন-০১৮৩৭-০৬৩১৯১
বাংলাদেশের অধিকাংশ পোষ্ট -সেন্টার

কলকাতায় পরিবেশক/প্রাপ্তিস্থান রিতাএন্ড জিৎ ইন্টারন্যাশনাল ৩৬পি.এনব্যানার্জি রোডকলকাতা ফোনঃ+৯১ ৭০০৩৭৭৩৪৬২৯৮৩৬০৪৬০৬৭ ৯৮৩০৪৩৯৬৭৯

আসাম পরিবেশক/প্রাপ্তিস্থান তুষার পাবলিশিং হাউস সীতারাম রোডচৌকিডিঙ্গি দ্রীব্রুগড়আসামভারতফোনঃ +৯১ ৯৪৩৫৪৭৩৮৭৫

প্রতিনিধি অমল পাইক - ০১৭১৯-৮৪৩৭২৫ (চট্রগ্রাম+খুলনাহারুন - ০১৭১০-৬১৫০১৯ (খুলনা+বগুড়া)কাউসার - ০১৭১১-১১৪২৯২ (সিলেট+রাজশাহীকাশেম আলী০১৯৪১৪৯৪০৬৩
জ্ঞানকোষ প্রকাশনী ৩৮/-বাংলাবাজার (২য় তলা), ঢাকা

(সারা বাংলাদেশঘরে বসে কুরিয়ারের মাধ্যমে বই পেতে যোগাযোগ করুন মানিকলাইব্রেরী-০১৭৩৫-৭৪২৯০৮ রকমারি১৬২৯৭০১৫১৯৫২১৯৭১ হক লাইব্রেরী০১৮২০-১৫৭১৮১ কাশেমআলী০১৯৪১৪৯৪০৬৩ (সারা বাংলাদেশ)


  

জ্ঞানকোষ প্রকাশনী
৩৮/২-ক, বাংলাবাজার (২য় তলা), ঢাকা।
       ফোনঃ ৭১১৮৪৪৩, ৮১১২৪৪১, ৮৬২৩২৫১.         
                                                     
কলকাতায় পরিবেশক/প্রাপ্তিস্থান
রিতা ইন্টারন্যাশনাল
৩৬, পি.এন. ব্যানার্জি রোড, কলকাতা
ফোনঃ ২৫১৩৮৩৫৯, ৯৮৩০৪৩৯৬৭৯, +৯১৯৮৩০৪৩৯৬৭৯

RELATED POST LINKS BELOW *****************