C# 강의/콘솔 다루기
C# 강의 - 2. int, float, bool, string 변수
이솔찬
2019. 2. 2. 12:54
안녕하세요. 이솔찬입니다.
이번에는 C#에서 int, float, bool, string 변수를 사용해 보겠습니다.
변수 형식은 다음과 같습니다.
int: 숫자 변수
float: 소수점이 포함된 변수
bool: 참과 거짓으로 사용되는 변수
string: 문자열 변수
먼저 Visual Studio에서 C# 콘솔 앱을 생성합니다.
프로젝트 이름은 Data로 설정합니다.
프로젝트가 생성되면 기본으로 있는 코드입니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Data { class Program { static void Main(string[] args) { } } } | cs |
1. 변수를 지정하기 위해 다음 코드를 추가합니다.
1 2 3 4 | int a = 123; float b = 123.4f; bool c = true; string d = "abc"; | cs |
여기서 주의할 점은 float 변수 값을 지정할 때 숫자 뒤에 f를 붙여야 합니다.
Visual Studio에서는 변수 이름 밑에 경고가 표시되는데 변수를 아직 사용하지 않아서 표시됩니다.
2. 이번에는 변수 값을 출력하는 함수를 1번에 코드 다음 줄에 작성합니다.
1 2 3 4 | Console.WriteLine(a); Console.WriteLine(b); Console.WriteLine(c); Console.WriteLine(d); | cs |
위에 코드는 전에 Hello World 출력할 때 사용했던 함수입니다.
3. 프로그램을 실행해도 닫히지 않도록 하는 함수를 2번에 코드 다음 줄에 추가합니다.
1 | Console.ReadKey(); | cs |
이 강의에서 사용한 코드입니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Data { class Program { static void Main(string[] args) { int a = 123; float b = 123.4f; bool c = true; string d = "abc"; Console.WriteLine(a); Console.WriteLine(b); Console.WriteLine(c); Console.WriteLine(d); Console.ReadKey(); } } } | cs |
실행 결과입니다.
변수 a, b, c, d가 코드를 입력한 순서대로 출력됩니다.
예제 파일:
완성 파일: