본문 바로가기
프로그래밍/연습문제

String 연습문제 2

by 카라미 2016. 2. 19.

public class StringExam2 {

//문자열을 입력받아서 공백의 개수를 리턴하는 메소드 

public static int spaceCount(String str){

return 0;

}

//문자열을 입력받아서 알파벳 개수를 리턴하는 메소드 

public static int alphaCount(String str){

return 0;

}

public static void main(String[] args) {

System.out.println(spaceCount("test tset ts ttt")); //3

System.out.println(alphaCount("test tset ts ttt")); //13

}

}



'프로그래밍 > 연습문제' 카테고리의 다른 글

String 연습문제  (3) 2020.08.27
열심히 풀어보아요  (1) 2016.07.13
bank  (0) 2016.07.11
String 연습문제3  (0) 2016.02.19
String연습문제 1  (1) 2016.02.19