2017년 10월 19일 목요일

2017년 3월 27일 월요일

[민트] 설치 프로그램

1. MonoDevelop
2. qt Creator
3. SMPlayer
4.BlueFish 편집기

5. 한글 키보드 설정
$sudo apr-get install uim-byeoru
메뉴 -> 언어 -> uim 설치 후 변환키 수정

2017년 2월 20일 월요일

C# - 데이터 형식 - 변환_atoi / itoa

using System;
 
namespace atoi_itoa
{
    class MainClass
    {
        public static void Main (string[] args)
        {
            int a = 123;
            string b = a.ToString ();
            Console.WriteLine (b);
 
            float c = 3.15563f;
            string d = c.ToString ();
            Console.WriteLine (d);
 
            string e = "1234567";
            int f = int.Parse (e);
            Console.WriteLine (f);
 
            string g = "12.34567";
            float h = float.Parse (g);
            Console.WriteLine (h);
        }
    }
}
cs