Compound Operations Program in C++(C Plus Plus)
In this latest tutorial, we will cover the following topics;
- Compound Operations Program in C++(C Plus Plus)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #include <iostream> using namespace std; int main() { int a,b; cout<<"Enter Value of a ="; cin>>a; cout<<"Enter Value of b ="; cin>>b; a+=b; cout<<"Value of a after a+ is "<<a<<endl; a-=b; cout<<"Value of a after a- is "<<a<<endl; a*=b; cout<<"Value of a after a* is "<<a<<endl; a/=b; cout<<"value of a after a/ is "<<a<<endl; a%=b; cout<<"Value of after a% is "<<a;} |
Output:
