Search Results

Showing results 1 to 1 of 1
Search took 0.01 seconds.
Search: Posts Made By: campkev ; Forum: C++ and child forums
Forum: C++ Feb 8th, 2006
Replies: 4
Views: 5,870
Posted By campkev
to find the number of digits in int x

if (x < 0)
x = -x;
int count = 1;
x = x/10;
while( x > 0)
{
count++;
x = x/10;
Showing results 1 to 1 of 1

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC