SlideShare une entreprise Scribd logo
1  sur  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

Contenu connexe

Tendances

C- Programs - Harsh
C- Programs - HarshC- Programs - Harsh
C- Programs - HarshHarsh Sharma
 
c++ project on restaurant billing
c++ project on restaurant billing c++ project on restaurant billing
c++ project on restaurant billing Swakriti Rathore
 
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++Rushil Aggarwal
 
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 aramseAram SE
 
Computer science project work
Computer science project workComputer science project work
Computer science project workrahulchamp2345
 
Travel management
Travel managementTravel management
Travel management1Parimal2
 
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
 
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++)Karan Bora
 
c++ program for Railway reservation
c++ program for Railway reservationc++ program for Railway reservation
c++ program for Railway reservationSwarup Kumar Boro
 
Pads lab manual final
Pads lab manual finalPads lab manual final
Pads lab manual finalAhalyaR
 
basic programs in C++
basic programs in C++ basic programs in C++
basic programs in C++ Arun Nair
 
C++ Programming - 3rd Study
C++ Programming - 3rd StudyC++ Programming - 3rd Study
C++ Programming - 3rd StudyChris Ohk
 
programming in C++ report
programming in C++ reportprogramming in C++ report
programming in C++ reportvikram mahendra
 
Practical File of C Language
Practical File of C LanguagePractical File of C Language
Practical File of C LanguageRAJWANT KAUR
 

Tendances (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
 

En vedette

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 3Ildebranda Lopez
 
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 schoolMeenu Goswami
 
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 GoswamiMeenu Goswami
 
Diseño electronico
Diseño electronicoDiseño electronico
Diseño electronicoNataytepha
 
IGLOBE ACADEMIC PORTALs PRESENTATION AUDIO LOOP
IGLOBE ACADEMIC PORTALs PRESENTATION AUDIO LOOPIGLOBE ACADEMIC PORTALs PRESENTATION AUDIO LOOP
IGLOBE ACADEMIC PORTALs PRESENTATION AUDIO LOOPKindzeka Nestor
 
Tyfonen haiyan
Tyfonen haiyanTyfonen haiyan
Tyfonen haiyanmapean
 

En vedette (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
 

Similaire à C++ assignment

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-ee01083101premrings
 
Oops practical file
Oops practical fileOops practical file
Oops practical fileAnkit Dixit
 
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 cOssa2015
 
C++ Programming - 1st Study
C++ Programming - 1st StudyC++ Programming - 1st Study
C++ Programming - 1st StudyChris Ohk
 
2014 computer science_question_paper
2014 computer science_question_paper2014 computer science_question_paper
2014 computer science_question_papervandna123
 
'C' language notes (a.p)
'C' language notes (a.p)'C' language notes (a.p)
'C' language notes (a.p)Ashishchinu
 
Assignment no 5
Assignment no 5Assignment no 5
Assignment no 5nancydrews
 
C++ Programming - 2nd Study
C++ Programming - 2nd StudyC++ Programming - 2nd Study
C++ Programming - 2nd StudyChris Ohk
 
Cs pritical file
Cs pritical fileCs pritical file
Cs pritical fileMitul Patel
 
Programming assignment 30 12-11
Programming assignment 30 12-11Programming assignment 30 12-11
Programming assignment 30 12-11Bilal Maqbool ツ
 
Assignement of programming & problem solving
Assignement of programming & problem solvingAssignement of programming & problem solving
Assignement of programming & problem solvingSyed Umair
 

Similaire à 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
 

Dernier

Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Shubhangi Sonawane
 
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.pdfQucHHunhnh
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfSanaAli374401
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
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...christianmathematics
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docxPoojaSen20
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
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.pptxDenish Jangid
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
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 Delhikauryashika82
 

Dernier (20)

Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
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
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
 
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
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
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...
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
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
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
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
 

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(); }