본문 바로가기

프로그래밍/C#

[C# 퀴즈 풀이]숫자구분자변환

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;


namespace number1
{
    class Program
    {
        static class Constants
        {
            public const bool DebugFlag = false;
        }

        static void D(string log)
        {
            if (Constants.DebugFlag) Console.WriteLine(log);
        }
        static void Main(string[] args)
        {
            if (args.Length != 1)
            {
                D("invalid arg");
                return;
            }
            string nu = args[0];
            nu = nu.Replace(',', ' ');
            nu = nu.Replace('.', ',');
            Console.WriteLine(nu);
        }
    }
}

반응형

'프로그래밍 > C#' 카테고리의 다른 글

C# 정렬 sort  (0) 2019.03.24
C# BinarySearchTree 이진탐색트리  (0) 2019.03.24
C# 파일 읽기  (0) 2019.03.24
C# 문자,숫자,영어,한글 구분  (0) 2019.03.21
[C# 퀴즈]숫자구분자변환  (0) 2018.03.26