SlideShare a Scribd company logo
1 of 1
Download to read 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

More Related Content

What's hot

Abstract class in c++
Abstract class in c++Abstract class in c++
Abstract class in c++Sujan Mia
 
ThreadProperties
ThreadPropertiesThreadProperties
ThreadPropertiesmyrajendra
 
Core java complete ppt(note)
Core java  complete  ppt(note)Core java  complete  ppt(note)
Core java complete ppt(note)arvind pandey
 
Operator Overloading
Operator OverloadingOperator Overloading
Operator OverloadingNilesh Dalvi
 
Principles and advantages of oop ppt
Principles and advantages of oop pptPrinciples and advantages of oop ppt
Principles and advantages of oop pptdaxesh chauhan
 
project on snake game in c language
project on snake game in c languageproject on snake game in c language
project on snake game in c languageAshutosh Kumar
 
Java package
Java packageJava package
Java packageCS_GDRCST
 
Object oriented programming 2
Object oriented programming 2Object oriented programming 2
Object oriented programming 2Aadil Ansari
 
RECURSION IN C
RECURSION IN C RECURSION IN C
RECURSION IN C v_jk
 
Infix to-postfix examples
Infix to-postfix examplesInfix to-postfix examples
Infix to-postfix examplesmua99
 
Object Oriented Programming Using C++ Practical File
Object Oriented Programming Using C++ Practical FileObject Oriented Programming Using C++ Practical File
Object Oriented Programming Using C++ Practical FileHarjinder Singh
 
Inheritance and interface
Inheritance and interfaceInheritance and interface
Inheritance and interfaceShubham Sharma
 
1.python interpreter and interactive mode
1.python interpreter and interactive mode1.python interpreter and interactive mode
1.python interpreter and interactive modeManjuA8
 
Inline function in C++
Inline function in C++Inline function in C++
Inline function in C++Learn By Watch
 
Polymorphism In c++
Polymorphism In c++Polymorphism In c++
Polymorphism In c++Vishesh Jha
 

What's hot (20)

Abstract class in c++
Abstract class in c++Abstract class in c++
Abstract class in c++
 
ThreadProperties
ThreadPropertiesThreadProperties
ThreadProperties
 
Core java complete ppt(note)
Core java  complete  ppt(note)Core java  complete  ppt(note)
Core java complete ppt(note)
 
Operator Overloading
Operator OverloadingOperator Overloading
Operator Overloading
 
Principles and advantages of oop ppt
Principles and advantages of oop pptPrinciples and advantages of oop ppt
Principles and advantages of oop ppt
 
project on snake game in c language
project on snake game in c languageproject on snake game in c language
project on snake game in c language
 
Java package
Java packageJava package
Java package
 
Object oriented programming 2
Object oriented programming 2Object oriented programming 2
Object oriented programming 2
 
RECURSION IN C
RECURSION IN C RECURSION IN C
RECURSION IN C
 
Infix to-postfix examples
Infix to-postfix examplesInfix to-postfix examples
Infix to-postfix examples
 
Object Oriented Programming Using C++ Practical File
Object Oriented Programming Using C++ Practical FileObject Oriented Programming Using C++ Practical File
Object Oriented Programming Using C++ Practical File
 
Pointers in C Programming
Pointers in C ProgrammingPointers in C Programming
Pointers in C Programming
 
Encapsulation
EncapsulationEncapsulation
Encapsulation
 
Object-oriented concepts
Object-oriented conceptsObject-oriented concepts
Object-oriented concepts
 
Inheritance and interface
Inheritance and interfaceInheritance and interface
Inheritance and interface
 
1.python interpreter and interactive mode
1.python interpreter and interactive mode1.python interpreter and interactive mode
1.python interpreter and interactive mode
 
Inline function in C++
Inline function in C++Inline function in C++
Inline function in C++
 
Polymorphism In c++
Polymorphism In c++Polymorphism In c++
Polymorphism In c++
 
C++ Inheritance
C++ InheritanceC++ Inheritance
C++ Inheritance
 
Pointer in c
Pointer in cPointer in c
Pointer in c
 

More from 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
 

More from 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