본문 바로가기

개인 공부방/JAVA

String으로 입력받아 int로 출력, int로 입력받아 String으로 치환

public class Ex {


public static void main(String[] args) {
String str1 = "100";
String str2 = "200";
int str3 ;
str3 = Integer.parseInt(str1) + Integer.parseInt(str2) ;
System.out.println(str3);
int su1=400;
int su2=500;
String su3=null;
su3 = String.valueOf(su1) + String.valueOf(su2);
System.out.println(su3);
}

}

======================결과========================

300
400500
================================================== 



Integer.parseInt를 이용하여 문자열에서 숫자값을 읽거나

String.valudOf(msg)를 이용하여 숫자값을 문자열로 치환 할 수 있다. 

'개인 공부방 > JAVA' 카테고리의 다른 글

자바 채팅 / 기능 구현  (0) 2011.11.24
자바 간단한 채팅프로그램  (0) 2011.11.24
자바 substring, trim, replace  (0) 2011.11.22
자바 indexOf  (0) 2011.11.21
자바 배열 출력의 각가지 형태  (0) 2011.11.21