SlideShare uma empresa Scribd logo
1 de 1
Baixar para ler offline
Problem: Create a flowchart to display the volume and surface area of a cylinder.




                                            Start




                                     Input radius, height




                           Volume = 3.14*radius*radius*height




                  SurfaceArea = 2*3.14*radius*radius+2*3.14*radius*height




                                 Output Volume, SurfaceArea




                                          End

Mais conteúdo relacionado

Mais procurados

BCA_Semester-II-Discrete Mathematics_unit-iv Graph theory
BCA_Semester-II-Discrete Mathematics_unit-iv Graph theoryBCA_Semester-II-Discrete Mathematics_unit-iv Graph theory
BCA_Semester-II-Discrete Mathematics_unit-iv Graph theoryRai University
 
Higher Differential Equation
Higher Differential Equation Higher Differential Equation
Higher Differential Equation Abdul Hannan
 
Let us c (by yashvant kanetkar) chapter 1 solution
Let us c (by yashvant kanetkar) chapter 1 solutionLet us c (by yashvant kanetkar) chapter 1 solution
Let us c (by yashvant kanetkar) chapter 1 solutionHazrat Bilal
 
Object Oriented Programming
Object Oriented ProgrammingObject Oriented Programming
Object Oriented ProgrammingIqra khalil
 
Application of derivatives
Application of derivativesApplication of derivatives
Application of derivativesindu thakur
 
Inheritance in java
Inheritance in javaInheritance in java
Inheritance in javaTech_MX
 
Calculus 1
Calculus 1Calculus 1
Calculus 1hosiduy
 
C++ classes tutorials
C++ classes tutorialsC++ classes tutorials
C++ classes tutorialsMayank Jain
 
PPt on Functions
PPt on FunctionsPPt on Functions
PPt on Functionscoolhanddav
 
project report in C++ programming and SQL
project report in C++ programming and SQLproject report in C++ programming and SQL
project report in C++ programming and SQLvikram mahendra
 
Constructors and destructors
Constructors and destructorsConstructors and destructors
Constructors and destructorsVineeta Garg
 
C++ project
C++ projectC++ project
C++ projectSonu S S
 
Class and Objects in Java
Class and Objects in JavaClass and Objects in Java
Class and Objects in JavaSpotle.ai
 
A c program of Phonebook application
A c program of Phonebook applicationA c program of Phonebook application
A c program of Phonebook applicationsvrohith 9
 
Malloc() and calloc() in c
Malloc() and calloc() in cMalloc() and calloc() in c
Malloc() and calloc() in cMahesh Tibrewal
 

Mais procurados (20)

Pointer in c
Pointer in cPointer in c
Pointer in c
 
BCA_Semester-II-Discrete Mathematics_unit-iv Graph theory
BCA_Semester-II-Discrete Mathematics_unit-iv Graph theoryBCA_Semester-II-Discrete Mathematics_unit-iv Graph theory
BCA_Semester-II-Discrete Mathematics_unit-iv Graph theory
 
Higher Differential Equation
Higher Differential Equation Higher Differential Equation
Higher Differential Equation
 
Let us c (by yashvant kanetkar) chapter 1 solution
Let us c (by yashvant kanetkar) chapter 1 solutionLet us c (by yashvant kanetkar) chapter 1 solution
Let us c (by yashvant kanetkar) chapter 1 solution
 
Object Oriented Programming
Object Oriented ProgrammingObject Oriented Programming
Object Oriented Programming
 
Application of derivatives
Application of derivativesApplication of derivatives
Application of derivatives
 
Inheritance in java
Inheritance in javaInheritance in java
Inheritance in java
 
Calculus 1
Calculus 1Calculus 1
Calculus 1
 
C++ classes tutorials
C++ classes tutorialsC++ classes tutorials
C++ classes tutorials
 
Encapsulation
EncapsulationEncapsulation
Encapsulation
 
PPt on Functions
PPt on FunctionsPPt on Functions
PPt on Functions
 
project report in C++ programming and SQL
project report in C++ programming and SQLproject report in C++ programming and SQL
project report in C++ programming and SQL
 
Constructors and destructors
Constructors and destructorsConstructors and destructors
Constructors and destructors
 
C++ project
C++ projectC++ project
C++ project
 
Class and Objects in Java
Class and Objects in JavaClass and Objects in Java
Class and Objects in Java
 
A c program of Phonebook application
A c program of Phonebook applicationA c program of Phonebook application
A c program of Phonebook application
 
Methods in java
Methods in javaMethods in java
Methods in java
 
Pointers in c++
Pointers in c++Pointers in c++
Pointers in c++
 
Malloc() and calloc() in c
Malloc() and calloc() in cMalloc() and calloc() in c
Malloc() and calloc() in c
 
JAVA AWT
JAVA AWTJAVA AWT
JAVA AWT
 

Mais de Maurice

Water cycle
Water cycleWater cycle
Water cycleMaurice
 
Sulfur cycle
Sulfur cycleSulfur cycle
Sulfur cycleMaurice
 
SocSci 2: four types of societies
SocSci 2: four types of societiesSocSci 2: four types of societies
SocSci 2: four types of societiesMaurice
 
SocSci 2 Introduction to Civilization
SocSci 2 Introduction to Civilization SocSci 2 Introduction to Civilization
SocSci 2 Introduction to Civilization Maurice
 
Chem: Matter powerpoint
Chem: Matter powerpointChem: Matter powerpoint
Chem: Matter powerpointMaurice
 
SocSci 2: Hindu religion
SocSci 2: Hindu religionSocSci 2: Hindu religion
SocSci 2: Hindu religionMaurice
 
Calcium cycle
Calcium cycleCalcium cycle
Calcium cycleMaurice
 

Mais de Maurice (7)

Water cycle
Water cycleWater cycle
Water cycle
 
Sulfur cycle
Sulfur cycleSulfur cycle
Sulfur cycle
 
SocSci 2: four types of societies
SocSci 2: four types of societiesSocSci 2: four types of societies
SocSci 2: four types of societies
 
SocSci 2 Introduction to Civilization
SocSci 2 Introduction to Civilization SocSci 2 Introduction to Civilization
SocSci 2 Introduction to Civilization
 
Chem: Matter powerpoint
Chem: Matter powerpointChem: Matter powerpoint
Chem: Matter powerpoint
 
SocSci 2: Hindu religion
SocSci 2: Hindu religionSocSci 2: Hindu religion
SocSci 2: Hindu religion
 
Calcium cycle
Calcium cycleCalcium cycle
Calcium cycle
 

Flowchart for volume and surface area of cylinder

  • 1. Problem: Create a flowchart to display the volume and surface area of a cylinder. Start Input radius, height Volume = 3.14*radius*radius*height SurfaceArea = 2*3.14*radius*radius+2*3.14*radius*height Output Volume, SurfaceArea End