int nNum;
  string sNum; 

<숫자 --> 문자 변환> 
 sNum = Integer.toString(nNum);

<문자 --> 숫자 변환> 
  nNum = Integer.parseInt(sNum);

+ Recent posts