반응형
//돈돈돈!
public string convertPrice(double price)
{
string num = string.Format("{0:# #### #### #### #### ####}", price).TrimStart().Replace(" ", ",");
string[] unit = new string[] { "", "만", "억", "조", "경", "해" };
string[] str = num.Split(',');
string result = "";
int cnt = 0;
for (int i = str.Length; i > 0; i--)
{
if (Convert.ToInt32(str[i - 1]) != 0)
{
result = Convert.ToInt32(str[i - 1]) + unit[cnt] + result;
}
cnt++;
}
return result;
}
반응형
'Programing > C#' 카테고리의 다른 글
[메이플스토리] 커닝파퀘, 배고픈무토 레시피, 수수료포함 캐시 비율계산기, 폭업사냥터 헬퍼 (0) | 2020.09.23 |
---|---|
[메이플스토리] 커닝파퀘, 수수료포함 비율계산, 폭업사냥터 헬퍼 (0) | 2020.09.22 |
메이플스토리 커닝시티 파티퀘스트 족보 (메이플 커닝파퀘 족보) (0) | 2020.09.09 |