안녕하세요. 플랫폼공작소입니다. 코딩테스트에서 자주 사용되는 자바 숫자, 문자 글자수 세는 방법을 공유하려합니다.
1. 문자의 길이 세는 방법!
문자 변수에 .length() 를 기술하시면 됩니다.
public class lenthTest {
public static void main(String[] args){
String str = "안녕하세요. 문자의 길이입니다.";
int strLength = str.length();
System.out.println(strLength);
}
}
결과 : 17
2. 숫자(정수)의 길이 세는 방법!
숫자 변수를 Math.log10..라는 함수에 넣고 돌려주시면 됩니다~
*주의사항, 숫자는 0보다 커야합니다.
public class lenthTest {
public static void main(String[] args){
int n=34567;
int intLength = (int)(Math.log10(n)+1);
System.out.println(intLength);
}
}
결과 : 5
추가로 궁금한 점이 있다면 댓글에 남겨주세요. 감사합니다.
reference : https://www.youtube.com/channel/UCG7CA2FkpUK-AmcaN75ph_w
광고 링크 : 플랫폼공작소, 플랫폼공작소TV, 쇼핑몰