Sunday, 10 June 2018

Lesson 6-Logic operations, And operation, Or operation, Not Operation - coding overdose

June 10, 2018 0
Lesson 6-Logic operations, And operation, Or operation, Not Operation - coding overdose
Logic operators in c++ && - and operator ||- or operator ! - not operator Program 1:- To find greatest among three numbers #include <iostream> using namespace std; int main () {     int a,b,c;     cout<<"enter any three numbers a,b,c"<<endl;     cin>>a>>b>>c;     if(a>=b && a>=c)     {         cout<<"a is greatest...

Lesson 5-Mathematical functions in C++- Coding overdose

June 10, 2018 0
Lesson 5-Mathematical functions in C++- Coding overdose
Mathematical functions Required header:  #include <cmath>            sqrt(x) square root  sin(x)sine of x (in radians) asin(x)Inverse Sine of x  cos(x)cosine of x (in radians) acos() Inverse cosine of x tan(x)tangent of x (in radians) atan() Returns Inverse tangent a Number abs()returns absolute value of an argument log(x)natural logarithm of x (base e) log10(x)logarithm of x to base...

C++ program examples:- Mathematics

June 10, 2018 0
C++ program examples:- Mathematics
1.Program to calculate area of a triangle.. Concepts you should know to write this program :-Float Formula of area of triangle = 1/2 base x height of trainge #include <iostream> using namespace std; int main () {     float b,h,a;     cout<<"enter base of triangle"<<endl;     cin>> b; cout <<"enter height of triangle"<<endl; cin>>h; a=(b*h)/2 ; cout <<"The area of...

Wednesday, 6 June 2018

Lesson 4-C++ Loops :- While loop, For loop, Do-While loop - Coding overdose

June 06, 2018 0
Lesson 4-C++ Loops :- While loop, For loop, Do-While loop - Coding overdose
in programming languages, loops are used to execute a set of statements repeatedly, until a particular condition is satisfied. There are 3 kind of loops in c++ 1. While loop 2.For loop 3.Do-While loop 1.While loop Example1:-counting from 0 to 9 (using while loop) #include <iostream> using namespace std; int main() {     int x=0; while (x<=9) {         cout << x<<endl;        ...
Page 1 of 11