Posts

Showing posts from August, 2019

Arithmetic operations using arithmetic symbols

Image
Arithmetic operations using arithmetic symbols : The program to perform the arithmetic operation using arithmetic symbols is given in the post below: Code: // Arithmetic Operations using characters #include<iostream> using namespace std; int main() { int a, b; char option; cout << "Enter 1st No = "; cin >> a; cout << "Enter 2nd No = "; cin >> b; cout << "For Sum Press + \n" << "For Subtraction Press -\n" << "For Multiplication Press *\n" << "For Division Press /\n"; cin >> option; if (option == '+') { cout << "Sum = " << a + b<<endl; } else if (option== '-') { cout << "Subtraction = " << a - b<<endl; } else if (option== '*') { cout << "Multiplication = " << a * b<<endl; }

Vector Fields in Calculus

Image
Vector Fields in Calculus: A complete overview about the vector fields with definition and example is given below in the presentation. Presentation: Download: To download this presentation click on the link below:

Rain Alarm Presentation

Image
Rain Alarm Presentation with full detail: Rain Alarm is a device used to alarm the people when there it is raining outside.Rain Alarm has many of the advantages in different fields of the daily life, mostly it is used in automobile and in irrigation systems. Presentation: Download This presentation: To download the given presentation in the post, click on the given link below: Download For more presentations and programming codes  bookmark this website. Thank you for visiting this blog.

Arithmetic operations using IF ELSE statement

Image
Arithmetic operations using IF ELSE statement: Arithmetic operations using if else statement in C ++ Programs are given below.Also bookmark this website for more C++ programs and other programming tutorials and for coding.To download this code have a look on the end of this post. Arithmetic operations using IF ELSE statement code: // Arithmetic Operations #include<iostream> using namespace std; int main() { int a, b, option; cout << "Enter 1st No = "; cin >> a; cout << "Enter 2nd No = "; cin >> b; cout << "What do you want to do ?"<< endl; cout << "For Addition Press 1 " << endl; cout << "For Subtration Press 2" << endl; cout << "For Multiplication Press 3" << endl; cout << "For Division Press 4" << endl; cin >> option; cout << endl; if (option == 1) { cout <<&qu

Find even or odd number in C ++ Language

Image
Find even or odd number in C ++ Language: To find even or odd numbers in C++ language. The program code is given below: Code of the program: // Find Even or odd no. #include<iostream> using namespace std; int main() { int a; cout << "Enter Any No" << endl; cin >> a; if (a % 2 == 0) { cout << "Number is Even" << endl; } else { cout << "Number is Odd" << endl; } } Download this code: click on the given link below: Download Now

Line Integral with example

Image
Line Integral with example: In Mathematics,a line integral is an integral where the function to be integrated  along the curve.Line integral also used in vector fields. Line Integral Presentation: Download this Presentation: to download this presentation click on the link below: Download Now

Next character printing by using static cast and goto statement in C Plus language.

Image
Next character printing by using static cast and Goto statement: C Plus Plus code: // Print next Chracter using Static cast #include<iostream> using namespace std; void main() { char value; int a; c: cout << "enter any chracter = "; cin >> value; a=static_cast<int>(value); a = a+1; cout << "Next Chracter is = " << static_cast<char>(a)<<endl; goto c; } Download this Code: Click on the given link below: Download Now