C#27 [C#] 변수& 상수 Variables & Constants (int, double, bool, char, String) using System; namespace MyFirstProgram { internal class Program { static void Main(string[] args) // main method { int my_first_int_val; // 내생에 첫 C# 정수형 변수 ㅋㅋ my_first_int_val = 160; // 내 키 Console.WriteLine(my_first_int_val); double my_we = 51.2; Console.WriteLine("My weight is " + my_we); bool this_is_me = true; Console.WriteLine(this_is_me); char sym = '@'; Console.WriteLine(sym); String name.. 2023. 2. 24. [C#] Beep!! Console.Beep() using System; namespace MyFirstProgram { internal class Program { static void Main(string[] args) { Console.Beep(); // 진짜 삡 소리남 ㅋㅋ } } } 2023. 2. 24. [C#] 기본 출력 Console.Write(), Console.WriteLine() using System; namespace MyFirstProgram { internal class Program { static void Main(string[] args) { Console.WriteLine("안녕하세요!"); Console.WriteLine("코딩 조랩 입니다!"); Console.Write("이건 줄바꿈을 안해주고요!"); Console.Write("이건 줄바꿈을 해줍니다!"); Console.WriteLine("\tCoding\b_JoLab\ntistory"); // \t = 탭 한칸, \b = 지우기, \n = 줄바꿈 } } } 쉽죠잉 ~ ? 2023. 2. 22. 이전 1 2 3 다음 728x90