Monday 21, May 2012
Welcome Guest, Register | Login  
      Home    |    Tutorials    |    Free Ebooks    |    Free Scripts    |    Articles    |    Blog     |    About Us    |    Contact Us

  Program for calculation of diameter, circumference and area of circle

This c++ program example will calculate the diameter, circumference and area of circle.
Cut & Paste Script
#include<iostream.h>
int main()
{
    float r,d,c,a;
    const float pi = 3.14159;
    cout<<" Enter the value of radius : ?\b";
    cin>>r;
    d = r * 2;
    c = 2 * pi * r;
    a = pi * r * r;
    cout<<" Diameter :  "<<d<<endl;
    cout<<" Circumference:  "<<c<<endl;
    cout<<" Area :  "<<a<<endl;
    return 0;
}

Output:
Enter the value of radius : 2.45
Diameter :  4.9
Circumference:  15.3938
Area :  18.8574
Press any key to continue
 
   
     RELATED SCRIPTS
 
Sorting numbers using selection sort in c++
Here is a program example to read a list of integer numbers from keybord and prints them in sorted order. This program is using selection sort to order the integers....more »
Category : C++ Programs Hits : 1492
   
Calculate number of digits in a number using c++
Here is a c++ program example to calculate number of digits in a number entered by user....more »
Category : C++ Programs Hits : 587
   
Creating an abstract class using C++
Here is the source code for an abstract class in C++....more »
Category : C++ Programs Hits : 479
   
program to display table of digit entered by the user
Here is a program to display table of digit entered by the user using c++....more »
Category : C++ Programs Hits : 679
   
Finding number of bytes in a file using c++
Here is a program example to find the number of bytes in a text file using c++....more »
Category : C++ Programs Hits : 835
   
   
SCRIPT CATEGORIES
 
  C Programs
C Programs scripts
  C++ Programs
C++ Programs scripts
  Java Programs
Java Programs scripts
  JavaScript Examples
JavaScript Examples scripts
  PHP Examples
PHP Examples scripts
  VBScript Examples
VBScript Examples scripts
 
 
 
POPULAR E-BOOKS
 
Download Data Recovery EBook  Ebook Data Recovery EBook
   
Download Its An Internet Jungle Out There Ebook Its An Internet Jungle Out There
   
Download 	Java: An Object First Approach Ebook Java: An Object First Approach
   
Download How to use targeted social networks to reach people of influence and get viral e Ebook How to use targeted social networks to reach people of influence and get viral e
   
Download Building Texts Faster Ebook Building Texts Faster
   
 
Studiesinn.com © 2012 All Rights Reserved.
Website Designed & Developed by TechXprtz