투케이2K

5. (C#/NET) [Mac Os] [문법] 명시적 변수 선언 및 Console 로그 출력 실시 - int , string , double , char , bool 본문

C샵 (NET)

5. (C#/NET) [Mac Os] [문법] 명시적 변수 선언 및 Console 로그 출력 실시 - int , string , double , char , bool

투케이2K 2024. 3. 10. 16:20

[개발 환경 설정]

개발 언어 : C# / NET

 

[소스 코드]

namespace testProject {

    class Program {

        static void Main(string[] args){
            
            /*
            -------------------------------------------
            [요약 설명]
            -------------------------------------------
            1. 명시적 선언 : 자료형을 명시하면서 변수를 선언합니다 (ex : string data = "hello";)
            -------------------------------------------
            2. 묵시적 선언 : 자료형 명시 없이 변수를 선언합니다 (ex : var data = "hello";)
            -------------------------------------------
            3. 변수 선언 자료형 타입 : 

            https://blog.naver.com/kkh0977/223378906621
            -------------------------------------------
            */


            // [변수 선언]
            int int_data = 30;
            string string_data = "Hello Twok";
            double dou_data = 20.5;
            char ch_data = 'a';
            bool bool_data = true;


            // [로그 출력 실시]
            Console.WriteLine($"");
            Console.WriteLine($"------------------------------------------");
            Console.WriteLine($"[Main] : [Log]");
            Console.WriteLine($"------------------------------------------");
            Console.WriteLine($"int_data : {int_data}");
            Console.WriteLine($"string_data : {string_data}");
            Console.WriteLine($"dou_data : {dou_data}");
            Console.WriteLine($"ch_data : {ch_data}");
            Console.WriteLine($"bool_data : {bool_data}");
            Console.WriteLine($"------------------------------------------");
            Console.WriteLine($"");
        }

    }
}
 

[결과 출력]


반응형
Comments