jineecode

자료형 본문

JAVA

자료형

지니코딩 2021. 2. 5. 11:52

1. 진수 바꾸기

println: 그대로 출력해주는 것 (줄바꿈 포함)

format 형식을 지정해서 출력할 수 있게 해줍니다. c언어에서 scanf 같이.

public class Main {
	public static void main(String[] args) {
		int a = 200;
		System.out.println("10진수: "+a);
		System.out.format("8진수: %o\n", a);
//		%o 형식 지정자. a가 o로 들어감. 어떤 10진수를 8진수로 수행해라.
		System.out.format("16진수: %x", a);
		
	}

}

>>

10진수: 200
8진수: 310
16진수: c8

 

2. substring

public class Main {
	public static void main(String[] args) {
		String name = "John Qoe";
		System.out.println(name);
		System.out.println(name.substring(0,1));
		System.out.println(name.substring(3,6));
	}
}

>>

John Qoe
J
n Q (3번째부터 '6번째자리'까지 출력)

'JAVA' 카테고리의 다른 글

연산자  (0) 2021.02.05
변수와 정수  (0) 2021.02.05
java 설치와 컴파일, 이클립스 설치  (0) 2021.02.05
Comments