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

  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.
Cut & Paste Script
#include<iostream.h>
void main()
{
    int num,c=0;
    char repeat='y';
   
    while(repeat=='y')
        {
        cout<<" Enter a number :  ";
        cin>>num;
            c=0;
            while(num<0)
            {
            num = num / 10;
            c++;
            }
            c=0;

        while(num>0)
            {
            num = num / 10;
            c++;
            }
    cout<<" Number of digits = "<<c<<endl;
    cout<<" Do you want another attempt ? (y/n)   ";
    cin>>repeat;
    }
}

Output:
Enter a number :  56237
Number of digits = 5
Do you want another attempt ? (y/n)   y
Enter a number :  981
Number of digits = 3
Do you want another attempt ? (y/n)   n
Press any key to continue
 
   
     RELATED SCRIPTS
 
swaping two strings in c++
Here is a code example to swap two strings using c++....more »
Category : C++ Programs Hits : 610
   
Program for calculation of diameter, circumference and area of circle
This c++ program example will calculate the diameter, circumference and area of circle....more »
Category : C++ Programs Hits : 701
   
Temperature conversion from Farenheit to Centigrade
Here is a c++ program for Temperature conversion from Farenheit to Centigrade....more »
Category : C++ Programs Hits : 640
   
Creating an abstract class using C++
Here is the source code for an abstract class in C++....more »
Category : C++ Programs Hits : 479
   
finding nth power of any number using c++
Here is a c++ program example to find nth power of any number entered by the user. Number and power to be entered by the user....more »
Category : C++ Programs Hits : 843
   
   
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 C++ In Action: Industrial Strength Programming Techniques  Ebook C++ In Action: Industrial Strength Programming Techniques
   
Download 7 Great Lies of Network Marketing Ebook 7 Great Lies of Network Marketing
   
Download Restore Your Computer in a Few Minutes Ebook Restore Your Computer in a Few Minutes
   
Download C++ Essential Ebook C++ Essential
   
Download Importance of Search Engine Article and Directory Submission Ebook Importance of Search Engine Article and Directory Submission
   
 
Studiesinn.com © 2012 All Rights Reserved.
Website Designed & Developed by TechXprtz