728x90
Ex) 데이터 타입
public class Datatype{
public static void main(String[] args){
System.out.println(6); // Number
Syetem.out.println("six"); // String
System.out.println("6"); // String 6
System.out.println(6+6); // 12
System.out.println("6"+"6") // 66
System.out.println(6*6); // 36
//System.out.println("6"*"6"); String은 *불가
System.out.println("1111".length()); // 4 (문자의 길이를 나타냄)
}
}
Ex) 숫자와 연산
public class number {
public static void main(String[] args) {
//Operator 연산자
System.out.println(6+2); // 8
System.out.println(6-2); // 4
System.out.println(6*2); // 12
System.out.println(6/2); // 3
System.out.println(Math.PI); // 3.141592653589793
System.out.println(Math.floor(Math.PI)); // 3.0
System.out.println(Math.ceil(Math.PI)); // 4.0
}
}
Ex) 문자열의 표현
public class StringApp {
public static void main(String[] args) {
System.out.println("你好世界"); // String
System.out.println('你好世界'); // Character
// new line
System.out.println("你好 \n世界");
// escape
System.out.println("\"你好世界\""); // "你好世界"
}
}
Ex) 문자열 다루기
public class StringOperation {
public static void main(String[] args) {
System.out.println("你好世界".length()); // 4
System.out.println("Hi, [[[name]]]...bye".replace("[[[name]]],"ro117youshin"));
}
}
'youtube.com|user|egoing2 > JAVA1' 카테고리의 다른 글
JAVA1 - 13.1 자바 문서 보는 법 (패키지, 클래스, 변수, 메소드) (2) | 2022.01.20 |
---|---|
JAVA1 - 10. 디버거 (0) | 2021.12.16 |
JAVA1 - 9. 프로그래밍 예제 IoT (3) | 2021.12.16 |
JAVA1 - 8. (0) | 2021.12.16 |
JAVA1 - 실행, JAVA의 동작원리 (0) | 2021.12.13 |