using System;
using System.Collections.Generic;
using System.Text;

namespace ExamAnswer
{
    
public class ConverMoney
    
{
        
public static string ConvertToUpper(double inputNum)
        
{
            
string strTemp = inputNum.ToString("f2");
            
return ProcessLeft(strTemp)+ProcessRight(strTemp);
        }


        
处理整数部分

        
处理小数部分

        
数字转换成大些

    }

}

 
posted on 2007-08-30 10:49  空空佛  阅读(546)  评论(0)    收藏  举报