Monday, 15 June 2015

How to add two numbers in c++ using class

This is for you my friends to learn about C/C++ amd much more

#include<iostream.h>
#include<conio.h>

class Add
       {
public:
int a,b;

void sum()
      {
cout<<a+b;
      }
void show()
       {
cout<<"Enter the value For adding\n";
cin>>a>>b;
getch();
       }
};
void main()
     {
clrscr();
Add obj;
obj.show();
obj.sum();
getch();
     }

Coding Format

Output Format

Thank You 
I hope you like it

Thursday, 4 June 2015

How to find square of a number using math.h header file in c++

#include<conio.h>
#include<iostream.h>
#include<math.h>

void main()
{
 clrscr();
 int sq,sum;
 cout<<"Enter the value for Squaring\n";
 cin>>sq;

 sum=pow(sq,2);

 cout<<"Square of the number is "<<sum;

 getch();

}
Coding Format

Output Format

Monday, 25 May 2015

How to find factorial of a number in c++

#include<iostream.h>
#include<conio.h>

void main()
  {
    clrscr();
    int n,m=1;
    cout<<"Enter the number to cal. Factorial\n";
    cin>>n;

    for(int i=1;i<=n;i++)
     {
     m=m*i;
     }

     dcout<<m;
     getch();
   }
    
Coding Format

Output Format

       

Friday, 22 May 2015

How to print numbers from 1-10 in while loop in c++

#include<conio.h>
#include<iostream.h>

void main()
{
 clrscr();
 int i;
 cout<<"Number from 1 to 10";
 i=1;

 while(i<=10)
{
 cout<<"\n"<<i;
 i++;
}
 getch();
}
Coding Format

Output Format


How to print numbers from 1-10 in do while loop in c++

#include<iostream.h>
#include<conio.h>

void main()
 {
    clrscr();
    int i;
    cout<<"Numbers from 1-10!";
    i=1;

    do
 {
    cout<<"\n"<<i;
    i++;
 }
    while(i<=10);

    getch();
 }
           
Coding Format

                                      
                                                                 Output Format










How to print numbers from 1-10 in for loop in c++

#include<iostream.h>
#include<conio.h>

void main()
{
 clrscr();
 cout<<"Number 1-10 are!";

 for(int i=1; i<=10; i++)
 cout<<"\n"<<i;

 getch();

}



Coding Format

Output Format

Wednesday, 20 May 2015

How to make calculator in c++

#include<conio.h>
#include<iostream.h>
void main()
{
 clrscr();
 int a,b;
 char c;
 cout<<"Enter the vslue for a and b\n";
 cin>>a>>b;
 cout<<"Enter the operators(+,-,* and /)\n";
          cin>>c;

 switch(c)
{
 case '+': cout<<a+b;break;
 case '-': cout<<a-b;break;
 case '*': cout<<a*b;break;
 case '/': cout<<a/b;break;
  default: cout<<"Wrong Input";break;

}

  getch();

}



                                                                     Coding Format
                                       

Output Format





How to add 2 numbers in C++

#include<conio.h>
#include<iostream.h>
void main()
{
 clrscr();

  int a,b,c;
  cout<<"Enter The Value For Adding\n";
  cin>>a>>b;

  c = a + b;
  cout<<" Answer = "<<c;

  getch();

}
                                                           
                                                                   Coding Format


                                                                 Output Format


How to make odd and even program in c++

#include<conio.h>
#include<iostream.h>

void main()
{
 clrscr();
 int a;
 cout<<"Enter the no. to check it is odd/even.\n";
 cin>>a;

    if(a%2==0)
     cout<<a<<"is even";

    else
     cout<<a<<"is odd";

 getch();

}



                                                                 Coding  Format

How to print "HELLO" in C++

#include<conio.h>
#include<iostream.h>

void main()

                 {  
                     clrscr();
                              cout<<"HELLO";

                                                       getch();                                                    

               

                 }

                                                                     Coding  Format    

Output  Format