2008년 6월 30일 월요일

count Digits

숫자자릿수세기



import java.util.StringTokenizer;


//import Program Files.java.util.*;


public class cal


{


public static void main(String[] args)


{


int i;

i=countDigits(500);

System.out.print(i);


}



private static int countDigits(int i) {


// TODO Auto-generated method stub


int count=0;


while(i>0){


i = i/10; //10 으로 0 이 될때까지 계속 나누면 됩니다.


count ++;


}// 이부분 연구해보세요.


return count;


}


}

댓글 없음:

댓글 쓰기

-


Sidewinder


World


FishMusic


LaughingBaby