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 |
Tags
- by any chance
- 형변환
- ISTQB
- 명절 표현
- keep -ing
- java
- counldn't have
- UE4
- relif
- Realtime Rendering
- know
- end up ing
- C++
- by until
- sort함수
- 제5인격
- it's a good thing
- 코로나19
- metascore
- gameQA
- html
- 명세기반테스트
- if조건절
- continue to
- 변수
- happen to
- might have p.p
- I'm glad
- for ing
- 게임QA
Archives
- Today
- Total
목록기본연산자 (1)
Records rather than Memories
연산자
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 package javatutorials.operator; public class Number { public static void main(String[] args) { // TODO Auto-generated method stub System.out.println(6 + 2); System.out.println(6 - 2); System.out.println(6 * 2); System.out.println(6 / 2); System.out.println(Math.PI); //수학관련 캐비넷 3.141592.. System.out.println(Math.floor(Math.PI)); //floor는 내림 3.14가 3이 된다..
Software/JAVA
2019. 10. 2. 17:00