반응형
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 |
Tags
- matplotlib
- PANDAS
- Github
- Google Excel
- Excel
- Tkinter
- hive
- Google Spreadsheet
- SQL
- 파이썬
- Mac
- list
- PySpark
- Redshift
- dataframe
- google apps script
- math
- django
- Java
- numpy
- Apache
- c#
- string
- gas
- PostgreSQL
- Kotlin
- array
- Python
- GIT
Archives
- Today
- Total
목록elseif (1)
달나라 노트
Java - if ~ else if ~ else
Original source = www.w3schools.com Java에서의 if문은 다음과 같이 사용할 수 있습니다. public class JavaIfElse { public static void main(String args[]) { if (2 > 1) { System.out.println("2 is greater than 1."); } } } -- Result 2 is greater than 1. public class JavaIfElse { public static void main(String args[]) { int a = 1; int b = 10; if (a > b) { System.out.println("A is greater than B."); } else { System.out.pr..
Java
2021. 3. 11. 03:13