반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 27 | 28 | 29 | 30 | 31 |
Tags
- gas
- c#
- google apps script
- Python
- hive
- Google Excel
- dataframe
- PySpark
- Tkinter
- Kotlin
- Excel
- Redshift
- matplotlib
- Google Spreadsheet
- Apache
- string
- array
- Java
- list
- Github
- GIT
- numpy
- SQL
- django
- PANDAS
- PostgreSQL
- 파이썬
- Mac
- math
Archives
- Today
- Total
목록OR (2)
달나라 노트
C# : &&, ||, ~ (논리 연산자, and, or, not)
논리값인 true, false값을 합성시키는 여러 논리 연산자에 대해 알아볼 것입니다. 일단 알아보기전에 먼저 간단한 내용을 알고갑시다. True를 숫자로 표시하면 1입니다. False를 숫자로 표시하면 0입니다. 즉, 1은 true를 의미하며 0은 false를 의미한다는 것을 참고하면 좋습니다. using System; class MyProgram { static void Main() { bool test1 = true && true; Console.WriteLine(test1); bool test2 = true && false; Console.WriteLine(test2); bool test3 = false && true; Console.WriteLine(test3); bool test4 = fals..
C#/C#
2022. 3. 23. 20:02