코딩Coding/C#_연습
-
C#연습]char 2 bytes코딩Coding/C#_연습 2023. 1. 8. 10:09
Rust는 4 byte인데 C#은 2 byte C언어는 1 byte // 코드 test해보고 넣을 예정230108 using System; namespace Hello_C_Sharp_Main { class Program { static void Main(string[] args) { Console.WriteLine("Hello World! C# tutorial"); } } } https://learn.microsoft.com/ko-kr/dotnet/csharp/language-reference/builtin-types/char char 형식- C# 참조 C#의 기본 제공 문자 형식에 대한 자세한 정보 learn.microsoft.com
-
Install python, vscode in windows10코딩Coding/C#_연습 2020. 6. 17. 02:04
https://sikaleo.tistory.com/m/57install python,vscode in window10 (2020 0418)이번 시간에는 window 10 에 파이썬과 vscode 를 설치해보겠습니다. 설치하는 시간은 2020년 4월 18일 13시 기준으로 설치 진행하였습니다. 아나콘다는 설치하지 않을 겁니다. 1) 파이썬 설치 우선 파이�sikaleo.tistory.com Anaconda3 설치 없이 비주얼 코드와 파이썬 설치만
-
C#연습]증감(++)연산자count연습<전위,후위 차이>(Increment operator)코딩Coding/C#_연습 2020. 6. 12. 01:23
++count using System; namespace ConsoleApp1 { class Program { static void Main(string[] args) { int count = 0; while (count < 10) Console.WriteLine("count={0}", ++count); // ++count } } } 결과 count++ using System; namespace ConsoleApp1 { class Program { static void Main(string[] args) { int count = 0; while (count < 10) Console.WriteLine("count={0}", count++); // count++ } } } 결과 https://www.yout..
-
증감 연산자(++, --)(increment and decrement operator)코딩Coding/C#_연습 2020. 6. 10. 11:08
증감 연산자(++, --) ++전위 using System; namespace ConsoleApp1 { class Program { static void Main(string[] args) { int a = 3; int b = 2 * ++a; // a의 값을 1증가시키고, a 의 값을 출력. Console.WriteLine("a={0}, b={1} ", a, b); } } } 결과 후위++ using System; namespace ConsoleApp1 { class Program { static void Main(string[] args) { int a = 3; int b = 2 * a++; // a 의 값을 출력한 뒤, a의 값을 1증가. Console.WriteLine("a={0}, b={1} ",..
-
형식 변환(Type Conversion),ToString & Parse Method코딩Coding/C#_연습 2020. 6. 4. 15:18
형식 변환(Type Conversion) 실수와 정수를 문자열로 변환(ToString), 문자열을 실수나 정수로 형식 변환(Parse) (ToString문자열로 만들어줌, Parse 문자열->정수or실수) using System; namespace ConsoleApp1 { class Program { static void Main(string[] args) { int a = 500; float b = 60.44f; string c = a.ToString(); string d = b.ToString(); Console.WriteLine("a={0}, b={1}, c={2}, d={3}", a, b, c, d); string e = "123"; string f = "123.456"; int g = int.P..
-
형식 변환(Type Conversion)-정수와 실수 간의 형식 변환코딩Coding/C#_연습 2020. 6. 4. 15:15
형식 변환(Type Conversion) 정수와 실수 간의 형식 변환 using System; namespace ConsoleApp1 { class Program { static void Main(string[] args) { int a = 500; float b = a; // 암시적 변환으로 별도의 구문이 필요하지 않음 Console.WriteLine("a={0}, b={1}", a, b); double c = 123.45; int d = (int)c; Console.WriteLine("c={0}, d={1}", c, d); } } } 결과 우선 10행과 같이 정수를 실수로 변환하는 것은 데이터 손실이 없으므로 암시적 변환(Implicit conversions)이 이루어 집니다. 여기서 암시적 변환이란..
-
출력 너비 지정코딩Coding/C#_연습 2020. 6. 4. 12:57
출력 너비를 지정 using System; namespace ConsoleApp1 { class Program { static void Main(string[] args) { int a = 12345; Console.WriteLine("|{0,15}|", a); Console.WriteLine("|{0,-15}|", a); Console.WriteLine("|{0,15:N0}|", a); Console.WriteLine("|{0,-15:N0}|", a); } } } 결과 https://blog.hexabrain.net/128 C# 강좌 3편. 변수, 데이터 형식, 상수 [최근 수정 2017.10.29] 1. 변수(Variable) 변수(variable)란 무엇일까요? 이미 익히 들어보신 분도 계실 거라 ..