-
논리 자료형(bool)(bool literals)코딩Coding/C#_연습 2020. 6. 2. 17:33728x90
논리 자료형:
다음 예제는 참과 거짓을 다루는 bool 형식에 대한 예제입니다.
bool literals are either true or false;
using System; namespace ConsoleApp1 { class Program { static void Main(string[] args) { bool a = true; bool b = false; Console.WriteLine("a={0}, b = {1},", a, b); } } }
결과
출처: https://blog.hexabrain.net/128[끝나지 않는 프로그래밍 일기]
반응형'코딩Coding > C#_연습' 카테고리의 다른 글
출력 너비 지정 (0) 2020.06.04 사용자 지정 수치 서식 문자열(Custom Numeric Format Strings) (0) 2020.06.04 수치 서식 문자열(Standard numeric format strings) (0) 2020.06.02 객체 자료형(object) (0) 2020.06.02 문자, 문자열 자료형(char, string) (char literals,string literals) (0) 2020.06.02 실수(real number)자료형(float, double, decimal 형식)(float literals) (0) 2020.06.02 데이터 형식 연습(byte,sbyte,short,ushort,int,uint,long,ulong) (0) 2020.06.02 [블로그] Highlight.js의 각종 문제점 & 해결방법 (0) 2020.06.01