Java
[Java] 캐스팅(Casting)
Dongi
2022. 7. 29. 17:05
안녕하세요! 오늘은 데이터 타입을 변환하는 캐스팅에 대해 알아봅니다.
캐스팅(Casting)
국어, 영어 그리고 수학 점수를 입력해서 총점과 평균을 계산하는 문제가 있다고 치고 한 번 풀어봅시다!
1. Casting이라는 클래스 만들기
public class Casting {
}
2. main Method 만들기
public class Casting {
public static void main(String[] args) {
}
}
3. 외부 클래스인 Scanner 호출 (이클립스를 사용하고 있다면 이 과정은 생략해도 알아서 import 해줍니다.)
import java.util.Scanner;
public class Casting {
public static void main(String[] args) {
}
}
4. 정수를 입력받기 위해 Scanner 객체 생성 및 닫기
import java.util.Scanner;
public class Casting {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
sc.close();
}
}
5. 입력 화면 만들기
import java.util.Scanner;
public class Casting {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// 입력 화면 만들기
System.out.print("국어 점수 : ");
int kor = sc.nextInt();
System.out.print("영어 점수 : ");
int eng = sc.nextInt();
System.out.print("수학 점수 : ");
int math = sc.nextInt();
sc.close();
}
}
6. 총점과 평균 계산
import java.util.Scanner;
public class Casting {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// 입력 화면 만들기
System.out.print("국어 점수 : ");
int kor = sc.nextInt();
System.out.print("영어 점수 : ");
int eng = sc.nextInt();
System.out.print("수학 점수 : ");
int math = sc.nextInt();
// 총점과 평균 계산
int sum = kor + eng + math;
int ave = sum / 3;
sc.close();
}
}
7. 출력화면 만들기
import java.util.Scanner;
public class Casting {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// 입력 화면 만들기
System.out.print("국어 점수 : ");
int kor = sc.nextInt();
System.out.print("영어 점수 : ");
int eng = sc.nextInt();
System.out.print("수학 점수 : ");
int math = sc.nextInt();
// 총점과 평균 계산
int sum = kor + eng + math;
int ave = sum / 3;
// 출력화면 만들기
System.out.printf("총점은 %d이고 평균은 %d입니다.", sum, ave);
sc.close();
}
}
/* 입력과 출력문
국어 점수 : 92
영어 점수 : 92
수학 점수 : 93
총점은 277이고 평균은 92입니다.
*/
8. 문제 발생
위와 같이 코드를 작성하고 국어 점수 92점 영어 점수 92점 수학 점수가 93점이라고 가정할 때 문제가 생깁니다. 계산기로 평균을 구해보면 92.33333333333333이 나와야 하는데 소수점을 버린 92점이 나온다는 것입니다.
이 문제를 해결하기 위해 int ave를 실수인 double로 고쳐서 코드를 돌려보겠습니다.
import java.util.Scanner;
public class CastingAlone01 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// 입력 화면 만들기
System.out.print("국어 점수 : ");
int kor = sc.nextInt();
System.out.print("영어 점수 : ");
int eng = sc.nextInt();
System.out.print("수학 점수 : ");
int math = sc.nextInt();
// 총점과 평균 계산
int sum = kor + eng + math;
double ave = sum / 3; // <- 이 부분을 double로 고치고
// 출력화면 만들기
System.out.printf("총점은 %d이고 평균은 %f입니다.", sum, ave); // <- %뒤에도 float의 약자를 넣어줍니다.
sc.close();
}
}
/*
국어 점수 : 92
영어 점수 : 92
수학 점수 : 93
총점은 277이고 평균은 92.000000입니다.
*/
여전히 소수점의 값들은 출력을 해주지 않는데요 그 이유는 바로 sum이 int(정수)이기 때문입니다. sum이 정수이기 때문에 3을 나누면 소수점 아래 값들은 모두 손실되는데요 이럴 때 캐스팅(Casting, 데이터 타입 변환)을 해주면 됩니다.
방법은 아주 간단합니다. sum 앞에 (double)을 붙여서 "컴퓨터야 sum은 double이다!"라고 알려주면 됩니다.
9. 문제 해결
import java.util.Scanner;
public class CastingAlone01 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// 입력 화면 만들기
System.out.print("국어 점수 : ");
int kor = sc.nextInt();
System.out.print("영어 점수 : ");
int eng = sc.nextInt();
System.out.print("수학 점수 : ");
int math = sc.nextInt();
// 총점과 평균 계산
int sum = kor + eng + math;
double ave = (double)sum / 3; // sum을 int에서 double로 캐스팅 해주었습니다.
// 출력화면 만들기
System.out.printf("총점은 %d이고 평균은 %.2f입니다.", sum, ave); // 소수점 두자리까지 출력을 위해 f앞에 .2를 붙였습니다.
sc.close();
}
}
/*
국어 점수 : 92
영어 점수 : 92
수학 점수 : 93
총점은 277이고 평균은 92.33입니다.
*/
본 내용은 강남 이젠아카데미컴퓨터학원에서 배운 내용을 복습하는 과정입니다.
링크 : https://gn.ezenac.co.kr/