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...
Sunday, 10 June 2018
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...
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
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