일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 딥러닝
- 이미지 생성
- #Android
- #일상영어
- c언어
- tensorflow update
- text2img
- Convolution Neural Network
- tokenizing
- #영어
- opencv SURF
- TensorFlow
- object detection
- #영어 명언
- 완전탐색
- #English
- convexhull
- python 알고리즘
- #opencv
- #실생활 영어
- python __init__
- findContours
- 영어명언
- #프로젝트
- 영어
- python list
- #실생활영어
- #1일1영어
- word embedding
- keras
Archives
- Today
- Total
목록#! (1)
When will you grow up?
[Java] 연산자(operator)
package operationtypetest;public class OperationTypeTest { public static void main(String[] args){ int num1 = 10; int num2 = 3; int result = num1 % num2; System.out.println("num1 % num2 : " + result);//1 //연산 후 대입연산자 result +=3; System.out.println("result +=3 : " + result);//4 System.out.println("num1 != num2 :" +(num1 != num2)); //논리연산자 : 논리값들을 연산해서 결과로 논리값을 반환하는 연산자 //&& : 피연산자가 값이 모두 true 일때만..
02. Study/Java
2016. 2. 5. 19:25