SlideShare uma empresa Scribd logo
1 de 27
PROGRAMMING OF TRUBO C++ LANGUAGE
Program No:1 (Addition of Two Numbers)
# include<iostream.h>
# include<conio.h>
Void main (void)
{
Clrscr () ;
Int a,b,c ;
a=10;
b=20;
C= a+b
Cout<<c;
getch ();
}
Program No:2 (Subtraction of Two no’s)
# include <iostream.h>
# include <conio.h>
Void main (void)
{
Int a,b,c ;
Clrscr();
Cout<< “subtraction of two values “ <<endl<<endl;
Cout<<”enter the value for a” <<endl;
Cin>>a;
Cout<<”enter the value for b”<<endl;
Cin>>b;
C=a-b;
Cout<<endl<<endl<<”subtraction”<<c ;
getch();
}
Program No: 3 (Cube)
# include <iostream.h>
# include<conio.h>
Void main (void)
{
Int r, cube ;
Clrscr () ;
Cout<<”enter the value for integer”<<endl ;
Cin>>r;
Cube = r*r*r ;
Cout<<endl<<endl<<”cube”<<cube;
getch () ;
}
Progam No:4 (Area of Circle)
# include <iostream.h>
# include <conio.h>
Void main (void)
{
Float pi ,r ,area ;
Clrscr ();
Cout<<”enter the value for radius”<<endl ;
Cin>>r;
Area = Pi*(r*r) ;
cout<<end<<endl<<”area”<<area ;
getch () ;
}
Program No:5 (circumference of circle)
# include <iostream.h>
# include <conio.h>
Void main (void)
{
Float pi,r, circumference ;
Clrscr () ;
Pi = 3.14;
Cout<<”enter the value of radius”<<endl ;
Cin>>r ;
Circumference = 2*(pi)*(r);
Cout<<endl<<endl<<”circumference= ”<<circum…;
getch () ;
}
Program No:6 (Area of Triangle)
# include <iostream.h>
# include <conio.h>
Void main (void)
{
Float base, height ,triangle ;
Clrscr () ;
Count<< ”enter the value of base”<<endl;
Cin>>base;
Cout<< “enter the value of the height “<<endl;
Cin>>height;
Triangle = 0.5*(base*height);
Cout<<endl<<endl<<”triangle= ”<<triangle;
getch () ;
}
Program No:7 (Constant Number)
#include <iostream.h>
# include <conio.h>
Void main (void)
{
Clrscr () ;
Const int a= 20 ;
Int b=10, c ;
b=b+1;
c=a+b;
cout<<c;
getch () ;
}
Program No: 8 (For Loop)
# include <iostream.h>
# include <conio.h>
Void main (void)
{
Clrscr () ;
Int a ;
Cout <<”Enter any number, and will generate its table”<<endl;
Cin>>a;
Cout <<”upto which extent table must be generated “<<endl;
Cin>> = z;
Cout <<endl;
for ( int i=1 ; i<=z ; i++ )
cout <<a<< ”*” <<i<< ”=” << a*1 <<endl;
getch () ;
}
Program No: 9 ( Average )
# include<constream.h>
Void main (void)
Clrscr () ;
Const int n=5;
Int sum=o;
Int x[ n];
Cout<<”marks of five subjects ”;
Cout<<endl;
for (int i=o; i<n; i++)
{
Cin>>x[i];
}
Int average=sum/n;
Cout<<endl<<”average 15 ”;
Cout<<average;
getch();
}
Program No: 10 ( Factorial )
# include<constream.h>
Void main (void)
{
Clrscr () ;
int num , fact=1;
Cout<<”enter the number to calculate its factorial:”;
Cin>>num;
for (int i=1 ; i<=num ; i++)
fact += i ;
Cout<<num<<”!=”<<fact;
getch () ;
}
Program No: 11 ( Array )
# include <iostream.h>
# include <conio.h>
Void main (void)
{
Clrscr () ;
Int x[10];
X[0]=2;
X[1]=3;
X[2]=4;
Cout<<x[0];
getch () ;
}
Program No: 12 (Introducton To While Loop)
# iunclude <iostream.h>
# include <conio.h>
Void main (void)
{
Clrscr () ;
int a ;
a=1;
While(a<10)
{
Cout<<a<<endl;
a++;
}
getch () ;
}
getch();
}
Program No: 13 (Making a sequence Using while loop)
# include <iostream.h>
# include <conio.h>
Void main (void)
Clrscr () ;
Long limit,next,last;
Limit = 1000;
Next=0;
Last=1;
While(last<limit)
{
Cout<<last<<” “endl;
Long sum = next+last;
Next = last;
Last = sum;
}
getch () ;
}
Program No: 14 ( Temperature conversion )
# include <iostream.h>
# include <conio.h>
Void main(void)
{
Clrscr();
Int choice;
Float ctemp,ftemp;
Cout<<”1.celsius to Fahrenheit”<<endl;
Cout<<”2.fahrenheit to Celsius”<<endl;
Cout<<”choose between 1&2:”<<endl;
Cin>>choice;
If(choice==1)
{
Cout<<”Enter the temperatre incelsius:”<<endl;
Cin>>ctemp;
Ftemp=(1.8*ctemp)+32;
Cout<< “temperatre in Fahrenheit=”<<ftemp<<endl;
}
Else
{
Cout<<”Enter the temperatre inFahrenheit : ”<<endl;
Cin>>ftemp;
C temp=(ftemp-32)*0.55;
Cout<<”temperature incelscius= “<<ctemp<<endl;
}
getch () ;
}
Program No: 15 ( Pre Increment )
# include <iostrem.h>
# include <conio.h>
Void main (void)
{
Clrscr () ;
Int a;
a=10;
a=a++;
cout<<a;
getch () ;
}
Program No : 16 ( Display cube series 1 to 10 )
# include < constream.h >
# include < iomanip.h >
Void main () ;
int a ;
for ( a=1 ; a<=10 ; a=a+1 )
{
Cout << set w (50)<<a;
int cube = a*a*a;
cout<<setw(6)<<cube<<endl; }
getch () ; }
Program No: 17 ( For Pattern )
# include <iostream.h>
# include <conio.h>
Void main (void)
{
Clrscr () ;
for (int i = I ; i<=5 ; i++)
{
for (int j=1 ; j<=I ; j++)
{
Cout<< ”*” ;
}
Cout<<endl ;
}
getch () ;
}
Program No: 18 ( for loop repetition of Name)
# include <iostream.h>
# include <conio.h>
Void main (void)
{
Clrscr () ;
Int a;
a=1;
For (a=1 ; a<=10 ; a++)
Cout<<”zohaib”<<endl;
getch () ;
}
Program No: 19 ( Table of Two by for loop )
# include <iostream.h>
# include <conio.h>
Void main (void)
{
Clrscr () ;
Int a;
a=1;
for (a=1 ; a<=10 ; a++)
cout<<2<< ”*” <<a<< ”=” << a*2 <<endl;
getch () ;
}
Program No : 20 ( Logical )
# include <iostream.h>
# include <conio.h>
Void main (void)
{
Clrscr () ;
Int a = 10 , b = 25;
Cout <<”a>b is ”<< (a>b )<<endl;
Cout <<”a<b is “<<(a<b)<<endl;
Cout <<”a==b is ”<<(a==b)<<endl;
Cout <<”a>=b is ”<<(a>=b)<<endl;
Cout <<”a<=b is ”<<(a<=b)<<endl;
Cout <<”a!=b is ”<<(a!=b)<<endl;
getch () ;
}
Program No: 21 ( Post Increment)
# include <iostream.h>
# include <conio.h>
Void main (void)
{
Clrscr () ;
Int a;
a = 12;
cout <<a++<<endl;
cout <<++a;
getch () ;
}
Program No: 22 ( Do While )
# include <iostream.h>
# include <conio.h>
Void main ( void )
{
float dividend,divisor;
char ch;
do
{
Cout<<”Enter Dividend”<<endl;
Cin>>dividend;
Cout<<”Enter divisor”<<endl;
Cin>>divisor;
Cout<<”QUOTIENT IS = “<<dividend/divisor<<endl;
Cout<<”DO YOU WANT TO PERFORM ANOTHER (Y/N)?”;
Cin>>ch;
}
While (ch!=’n’);
getch () ;
}
Program No:23 (Conditional Operator )
# include <iostream.h>
# include <conio.h>
Void main (void)
{
int a,b,c;
clrscr () ;
cout<<”Enter value of a:” ;
cin >> a;
cout<<”Enter the value of b:”;
cin>>b;
c= a>b?a:b;
cout<<a<<”is greatest”;
getch ();
}
Program No: 24 ( Power Dissipation )
# include <iostream.h>
# include <conio.h>
Void main (void)
{ clrscr ();
Float V,I,R,P;
Cout<<”Enter the voltage across the resistor :”<<endl;
Cin>>V;
Cout<<”Enter the current through resistor :”<<endl;
Cin>>I;
R=V/I;
P=(I*I)*R;
Cout<<”The power dissipation is :”<<P<<”watts”<<endl;
If (P>100)
Cout<<”Alert! There is too much dissipation”;
getch();
}
Program No: 25 ( Addition of square,cube,fourth )
# include <iostream.h>
# include <conio.h>
int square;
int cube;
int fourth;
void main (void)
{
Clrscr();
int x,y,z,X1,Y1,Z1,fX;
cout<<”Enter the value of X”;
cin>>x;
cout<<”Enter the value of Y”;
cin>>y;
cout<<endl<<”Enter the value of Z”;
cin>>z;
X1= square;
Y1=cube;
Z1=fourth;
Cout<<”Result of f(x) is”<<fx;
getch();
}
Program No: 26 (Parametric Area)
# include <iostream.h>
# include <conio.h>
Void main (void)
{
Clrscr();
int L;
int W;
int A;
int P;
float T;
cout<<”length=”;
cin>>L;
cout<<”width=”;
cin>>w;
A=l*W;
Cout<<”Area=”<<A;
P=(2*l)+(2*W);
Cout<<”/n param=”<<P;
T=0.5*(L*W)’
Cout<<”/n Area Tri=”<<T;
getch();
}
C++ assignment

Mais conteúdo relacionado

Mais procurados

1 borland c++ 5.02 by aramse
1   borland c++ 5.02 by aramse1   borland c++ 5.02 by aramse
1 borland c++ 5.02 by aramse
Aram SE
 
Travel management
Travel managementTravel management
Travel management
1Parimal2
 
Assignement of programming & problem solving ass.(3)
Assignement of programming & problem solving ass.(3)Assignement of programming & problem solving ass.(3)
Assignement of programming & problem solving ass.(3)
Syed Umair
 
c++ program for Railway reservation
c++ program for Railway reservationc++ program for Railway reservation
c++ program for Railway reservation
Swarup Kumar Boro
 
basic programs in C++
basic programs in C++ basic programs in C++
basic programs in C++
Arun Nair
 

Mais procurados (20)

Pratik Bakane C++
Pratik Bakane C++Pratik Bakane C++
Pratik Bakane C++
 
C- Programs - Harsh
C- Programs - HarshC- Programs - Harsh
C- Programs - Harsh
 
c++ project on restaurant billing
c++ project on restaurant billing c++ project on restaurant billing
c++ project on restaurant billing
 
Computer science Investigatory Project Class 12 C++
Computer science Investigatory Project Class 12 C++Computer science Investigatory Project Class 12 C++
Computer science Investigatory Project Class 12 C++
 
Pratik Bakane C++
Pratik Bakane C++Pratik Bakane C++
Pratik Bakane C++
 
1 borland c++ 5.02 by aramse
1   borland c++ 5.02 by aramse1   borland c++ 5.02 by aramse
1 borland c++ 5.02 by aramse
 
Computer science project work
Computer science project workComputer science project work
Computer science project work
 
Travel management
Travel managementTravel management
Travel management
 
งานนำเสนอ อาจารย์ลาวัลย์
งานนำเสนอ อาจารย์ลาวัลย์งานนำเสนอ อาจารย์ลาวัลย์
งานนำเสนอ อาจารย์ลาวัลย์
 
C++ file
C++ fileC++ file
C++ file
 
Lab loop
Lab loopLab loop
Lab loop
 
Assignement of programming & problem solving ass.(3)
Assignement of programming & problem solving ass.(3)Assignement of programming & problem solving ass.(3)
Assignement of programming & problem solving ass.(3)
 
CBSE Computer Project for Class 12 ( C++)
CBSE Computer Project for Class 12 ( C++)CBSE Computer Project for Class 12 ( C++)
CBSE Computer Project for Class 12 ( C++)
 
c++ program for Railway reservation
c++ program for Railway reservationc++ program for Railway reservation
c++ program for Railway reservation
 
Pads lab manual final
Pads lab manual finalPads lab manual final
Pads lab manual final
 
basic programs in C++
basic programs in C++ basic programs in C++
basic programs in C++
 
C++ Programming - 3rd Study
C++ Programming - 3rd StudyC++ Programming - 3rd Study
C++ Programming - 3rd Study
 
programming in C++ report
programming in C++ reportprogramming in C++ report
programming in C++ report
 
C++ file
C++ fileC++ file
C++ file
 
Practical File of C Language
Practical File of C LanguagePractical File of C Language
Practical File of C Language
 

Destaque

IGLOBE ACADEMIC PORTALs PRESENTATION AUDIO LOOP
IGLOBE ACADEMIC PORTALs PRESENTATION AUDIO LOOPIGLOBE ACADEMIC PORTALs PRESENTATION AUDIO LOOP
IGLOBE ACADEMIC PORTALs PRESENTATION AUDIO LOOP
Kindzeka Nestor
 

Destaque (13)

Celula animal
Celula animalCelula animal
Celula animal
 
2015resume
2015resume2015resume
2015resume
 
Industri vaksin
Industri vaksinIndustri vaksin
Industri vaksin
 
Computación Grafica jairo andres
Computación Grafica jairo andresComputación Grafica jairo andres
Computación Grafica jairo andres
 
Nuevo presentación de microsoft power point
Nuevo presentación de microsoft power pointNuevo presentación de microsoft power point
Nuevo presentación de microsoft power point
 
Competencias de innovación y creatividad ponencia mesa 3
Competencias de innovación y creatividad ponencia mesa 3Competencias de innovación y creatividad ponencia mesa 3
Competencias de innovación y creatividad ponencia mesa 3
 
Ms. Meenu Goswami , Principal Bal bharati public school
Ms. Meenu Goswami , Principal  Bal bharati public schoolMs. Meenu Goswami , Principal  Bal bharati public school
Ms. Meenu Goswami , Principal Bal bharati public school
 
Bal bharati public school Principal, Ms. Meenu Goswami
Bal bharati public school  Principal, Ms. Meenu GoswamiBal bharati public school  Principal, Ms. Meenu Goswami
Bal bharati public school Principal, Ms. Meenu Goswami
 
Diseño electronico
Diseño electronicoDiseño electronico
Diseño electronico
 
IGLOBE ACADEMIC PORTALs PRESENTATION AUDIO LOOP
IGLOBE ACADEMIC PORTALs PRESENTATION AUDIO LOOPIGLOBE ACADEMIC PORTALs PRESENTATION AUDIO LOOP
IGLOBE ACADEMIC PORTALs PRESENTATION AUDIO LOOP
 
FORMATURA
FORMATURAFORMATURA
FORMATURA
 
Tice
TiceTice
Tice
 
Tyfonen haiyan
Tyfonen haiyanTyfonen haiyan
Tyfonen haiyan
 

Semelhante a C++ assignment

Oops practical file
Oops practical fileOops practical file
Oops practical file
Ankit Dixit
 
Assignement of programming & problem solving
Assignement of programming & problem solvingAssignement of programming & problem solving
Assignement of programming & problem solving
Syed Umair
 

Semelhante a C++ assignment (20)

54602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee0108310154602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee01083101
 
C++ file
C++ fileC++ file
C++ file
 
Oops practical file
Oops practical fileOops practical file
Oops practical file
 
Code for program to draw a circle using mid point circle algorithm in c
Code for program to draw a circle using mid point circle algorithm in cCode for program to draw a circle using mid point circle algorithm in c
Code for program to draw a circle using mid point circle algorithm in c
 
C++ Programming - 1st Study
C++ Programming - 1st StudyC++ Programming - 1st Study
C++ Programming - 1st Study
 
Qno 1 (d)
Qno 1 (d)Qno 1 (d)
Qno 1 (d)
 
2014 computer science_question_paper
2014 computer science_question_paper2014 computer science_question_paper
2014 computer science_question_paper
 
'C' language notes (a.p)
'C' language notes (a.p)'C' language notes (a.p)
'C' language notes (a.p)
 
Assignment no 5
Assignment no 5Assignment no 5
Assignment no 5
 
C++ practical
C++ practicalC++ practical
C++ practical
 
Include
IncludeInclude
Include
 
Cpp c++ 1
Cpp c++ 1Cpp c++ 1
Cpp c++ 1
 
C++ TUTORIAL 8
C++ TUTORIAL 8C++ TUTORIAL 8
C++ TUTORIAL 8
 
Final DAA_prints.pdf
Final DAA_prints.pdfFinal DAA_prints.pdf
Final DAA_prints.pdf
 
7720
77207720
7720
 
C++ Programming - 2nd Study
C++ Programming - 2nd StudyC++ Programming - 2nd Study
C++ Programming - 2nd Study
 
Cs pritical file
Cs pritical fileCs pritical file
Cs pritical file
 
Programming assignment 30 12-11
Programming assignment 30 12-11Programming assignment 30 12-11
Programming assignment 30 12-11
 
Assignement of programming & problem solving
Assignement of programming & problem solvingAssignement of programming & problem solving
Assignement of programming & problem solving
 
C questions
C questionsC questions
C questions
 

Último

Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 

Último (20)

Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptx
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 

C++ assignment

  • 1. PROGRAMMING OF TRUBO C++ LANGUAGE Program No:1 (Addition of Two Numbers) # include<iostream.h> # include<conio.h> Void main (void) { Clrscr () ; Int a,b,c ; a=10; b=20; C= a+b Cout<<c; getch (); }
  • 2. Program No:2 (Subtraction of Two no’s) # include <iostream.h> # include <conio.h> Void main (void) { Int a,b,c ; Clrscr(); Cout<< “subtraction of two values “ <<endl<<endl; Cout<<”enter the value for a” <<endl; Cin>>a; Cout<<”enter the value for b”<<endl; Cin>>b; C=a-b; Cout<<endl<<endl<<”subtraction”<<c ; getch(); }
  • 3. Program No: 3 (Cube) # include <iostream.h> # include<conio.h> Void main (void) { Int r, cube ; Clrscr () ; Cout<<”enter the value for integer”<<endl ; Cin>>r; Cube = r*r*r ; Cout<<endl<<endl<<”cube”<<cube; getch () ; }
  • 4. Progam No:4 (Area of Circle) # include <iostream.h> # include <conio.h> Void main (void) { Float pi ,r ,area ; Clrscr (); Cout<<”enter the value for radius”<<endl ; Cin>>r; Area = Pi*(r*r) ; cout<<end<<endl<<”area”<<area ; getch () ; }
  • 5. Program No:5 (circumference of circle) # include <iostream.h> # include <conio.h> Void main (void) { Float pi,r, circumference ; Clrscr () ; Pi = 3.14; Cout<<”enter the value of radius”<<endl ; Cin>>r ; Circumference = 2*(pi)*(r); Cout<<endl<<endl<<”circumference= ”<<circum…; getch () ; }
  • 6. Program No:6 (Area of Triangle) # include <iostream.h> # include <conio.h> Void main (void) { Float base, height ,triangle ; Clrscr () ; Count<< ”enter the value of base”<<endl; Cin>>base; Cout<< “enter the value of the height “<<endl; Cin>>height; Triangle = 0.5*(base*height); Cout<<endl<<endl<<”triangle= ”<<triangle; getch () ; }
  • 7. Program No:7 (Constant Number) #include <iostream.h> # include <conio.h> Void main (void) { Clrscr () ; Const int a= 20 ; Int b=10, c ; b=b+1; c=a+b; cout<<c; getch () ; }
  • 8. Program No: 8 (For Loop) # include <iostream.h> # include <conio.h> Void main (void) { Clrscr () ; Int a ; Cout <<”Enter any number, and will generate its table”<<endl; Cin>>a; Cout <<”upto which extent table must be generated “<<endl; Cin>> = z; Cout <<endl; for ( int i=1 ; i<=z ; i++ ) cout <<a<< ”*” <<i<< ”=” << a*1 <<endl; getch () ; }
  • 9. Program No: 9 ( Average ) # include<constream.h> Void main (void) Clrscr () ; Const int n=5; Int sum=o; Int x[ n]; Cout<<”marks of five subjects ”; Cout<<endl; for (int i=o; i<n; i++) { Cin>>x[i]; } Int average=sum/n; Cout<<endl<<”average 15 ”; Cout<<average; getch(); }
  • 10. Program No: 10 ( Factorial ) # include<constream.h> Void main (void) { Clrscr () ; int num , fact=1; Cout<<”enter the number to calculate its factorial:”; Cin>>num; for (int i=1 ; i<=num ; i++) fact += i ; Cout<<num<<”!=”<<fact; getch () ; }
  • 11. Program No: 11 ( Array ) # include <iostream.h> # include <conio.h> Void main (void) { Clrscr () ; Int x[10]; X[0]=2; X[1]=3; X[2]=4; Cout<<x[0]; getch () ; }
  • 12. Program No: 12 (Introducton To While Loop) # iunclude <iostream.h> # include <conio.h> Void main (void) { Clrscr () ; int a ; a=1; While(a<10) { Cout<<a<<endl; a++; } getch () ; } getch(); }
  • 13. Program No: 13 (Making a sequence Using while loop) # include <iostream.h> # include <conio.h> Void main (void) Clrscr () ; Long limit,next,last; Limit = 1000; Next=0; Last=1; While(last<limit) { Cout<<last<<” “endl; Long sum = next+last; Next = last; Last = sum; } getch () ; }
  • 14. Program No: 14 ( Temperature conversion ) # include <iostream.h> # include <conio.h> Void main(void) { Clrscr(); Int choice; Float ctemp,ftemp; Cout<<”1.celsius to Fahrenheit”<<endl; Cout<<”2.fahrenheit to Celsius”<<endl; Cout<<”choose between 1&2:”<<endl; Cin>>choice; If(choice==1) { Cout<<”Enter the temperatre incelsius:”<<endl; Cin>>ctemp; Ftemp=(1.8*ctemp)+32; Cout<< “temperatre in Fahrenheit=”<<ftemp<<endl; } Else { Cout<<”Enter the temperatre inFahrenheit : ”<<endl; Cin>>ftemp; C temp=(ftemp-32)*0.55; Cout<<”temperature incelscius= “<<ctemp<<endl; } getch () ; }
  • 15. Program No: 15 ( Pre Increment ) # include <iostrem.h> # include <conio.h> Void main (void) { Clrscr () ; Int a; a=10; a=a++; cout<<a; getch () ; }
  • 16. Program No : 16 ( Display cube series 1 to 10 ) # include < constream.h > # include < iomanip.h > Void main () ; int a ; for ( a=1 ; a<=10 ; a=a+1 ) { Cout << set w (50)<<a; int cube = a*a*a; cout<<setw(6)<<cube<<endl; } getch () ; }
  • 17. Program No: 17 ( For Pattern ) # include <iostream.h> # include <conio.h> Void main (void) { Clrscr () ; for (int i = I ; i<=5 ; i++) { for (int j=1 ; j<=I ; j++) { Cout<< ”*” ; } Cout<<endl ; } getch () ; }
  • 18. Program No: 18 ( for loop repetition of Name) # include <iostream.h> # include <conio.h> Void main (void) { Clrscr () ; Int a; a=1; For (a=1 ; a<=10 ; a++) Cout<<”zohaib”<<endl; getch () ; }
  • 19. Program No: 19 ( Table of Two by for loop ) # include <iostream.h> # include <conio.h> Void main (void) { Clrscr () ; Int a; a=1; for (a=1 ; a<=10 ; a++) cout<<2<< ”*” <<a<< ”=” << a*2 <<endl; getch () ; }
  • 20. Program No : 20 ( Logical ) # include <iostream.h> # include <conio.h> Void main (void) { Clrscr () ; Int a = 10 , b = 25; Cout <<”a>b is ”<< (a>b )<<endl; Cout <<”a<b is “<<(a<b)<<endl; Cout <<”a==b is ”<<(a==b)<<endl; Cout <<”a>=b is ”<<(a>=b)<<endl; Cout <<”a<=b is ”<<(a<=b)<<endl; Cout <<”a!=b is ”<<(a!=b)<<endl; getch () ; }
  • 21. Program No: 21 ( Post Increment) # include <iostream.h> # include <conio.h> Void main (void) { Clrscr () ; Int a; a = 12; cout <<a++<<endl; cout <<++a; getch () ; }
  • 22. Program No: 22 ( Do While ) # include <iostream.h> # include <conio.h> Void main ( void ) { float dividend,divisor; char ch; do { Cout<<”Enter Dividend”<<endl; Cin>>dividend; Cout<<”Enter divisor”<<endl; Cin>>divisor; Cout<<”QUOTIENT IS = “<<dividend/divisor<<endl; Cout<<”DO YOU WANT TO PERFORM ANOTHER (Y/N)?”; Cin>>ch; } While (ch!=’n’); getch () ; }
  • 23. Program No:23 (Conditional Operator ) # include <iostream.h> # include <conio.h> Void main (void) { int a,b,c; clrscr () ; cout<<”Enter value of a:” ; cin >> a; cout<<”Enter the value of b:”; cin>>b; c= a>b?a:b; cout<<a<<”is greatest”; getch (); }
  • 24. Program No: 24 ( Power Dissipation ) # include <iostream.h> # include <conio.h> Void main (void) { clrscr (); Float V,I,R,P; Cout<<”Enter the voltage across the resistor :”<<endl; Cin>>V; Cout<<”Enter the current through resistor :”<<endl; Cin>>I; R=V/I; P=(I*I)*R; Cout<<”The power dissipation is :”<<P<<”watts”<<endl; If (P>100) Cout<<”Alert! There is too much dissipation”; getch(); }
  • 25. Program No: 25 ( Addition of square,cube,fourth ) # include <iostream.h> # include <conio.h> int square; int cube; int fourth; void main (void) { Clrscr(); int x,y,z,X1,Y1,Z1,fX; cout<<”Enter the value of X”; cin>>x; cout<<”Enter the value of Y”; cin>>y; cout<<endl<<”Enter the value of Z”; cin>>z; X1= square; Y1=cube; Z1=fourth; Cout<<”Result of f(x) is”<<fx; getch(); }
  • 26. Program No: 26 (Parametric Area) # include <iostream.h> # include <conio.h> Void main (void) { Clrscr(); int L; int W; int A; int P; float T; cout<<”length=”; cin>>L; cout<<”width=”; cin>>w; A=l*W; Cout<<”Area=”<<A; P=(2*l)+(2*W); Cout<<”/n param=”<<P; T=0.5*(L*W)’ Cout<<”/n Area Tri=”<<T; getch(); }