티스토리 뷰
반응형
package prj190626;
import java.util.*;
public class If_2 {
public static void main(String[] args) {
int a =0;
int math = 0;
int eng = 0;
int kor = 0;
int total = 0;
float avg = 0.0f;
System.out.println("원하는 숫자를 입력하세요");
System.out.println("1. 총점");
System.out.println("2. 평균");
Scanner scan = new Scanner(System.in);
String tmp = scan.nextLine();
a = Integer.parseInt(tmp);
if(a==1) {
System.out.println("수학 점수를 입력하세요");
String tmpMath = scan.nextLine();
math = Integer.parseInt(tmpMath);
System.out.println("수학점수는 " + math + "점 입니다");
System.out.println("영어 점수를 입력하세요");
String tmpEng = scan.nextLine();
eng = Integer.parseInt(tmpEng);
System.out.println("영어점수는 "+eng+"점 입니다");
System.out.println("국어 점수를 입력하세요");
String tmpKor = scan.nextLine();
kor = Integer.parseInt(tmpKor);
System.out.println("국어점수는 "+kor+"점 입니다");
total = math+eng+kor;
System.out.println("총점은 " + total + "점 입니다");
}
if(a==2) {
System.out.println("수학 점수를 입력하세요");
String tmpMath = scan.nextLine();
math = Integer.parseInt(tmpMath);
System.out.println("수학점수는 " + math + "점 입니다");
System.out.println("영어 점수를 입력하세요");
String tmpEng = scan.nextLine();
eng = Integer.parseInt(tmpEng);
System.out.println("영어점수는 "+eng+"점 입니다");
System.out.println("국어 점수를 입력하세요");
String tmpKor = scan.nextLine();
kor = Integer.parseInt(tmpKor);
System.out.println("국어점수는 "+kor+"점 입니다");
total = math+eng+kor;
avg = (float)total/3; //total 먼저 float으로 강제 캐스팅 후 3으로 나누는것이 더 정확 한 값 출력
System.out.println("총점은 " + total + "점이고" + " 평균은 " + (int)avg + "점 입니다");
}
}
}
c++과 달리 JAVA는 new 로 할당하는 동적할당 delete를 해주지 않아도 된다 라고 하셨다.
근데 이건 의견 분분 한듯
가비지 콜렉터로 자동으로 메모리 정리 해준다고 하지만 구문 길어질땐 null값 주는게 좋지 않을까
반응형
'JAVA' 카테고리의 다른 글
190626 사칙연산 입력받기 (0) | 2019.06.26 |
---|---|
190626 Switch 문 가위바위보 (0) | 2019.06.26 |
190626 switch 문 예제 (0) | 2019.06.26 |
190626 2의 배수이자 3의 배수 (6의배수) 골라내기 (0) | 2019.06.26 |
190625 중복if문 (0) | 2019.06.26 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- POI EXCEL
- Failed to load resource: the server responded with a status of 404 (Not Found)
- JSON파싱
- SpringXmlModelInspection
- 인텔리제이
- Regex
- IntelliJ #gradle #tomcat #spring #springmvc
- 정규식
- poi 엑셀
- PageNotFound - No mapping for GET
- 공백찾기
- Spring
- poi
- jQuery
- 정규식 한글만
- selectbox
- mybatis
- select제어
- 정규식 특수문자
- 엑셀다운로드
- 정규식 숫자만
- JSON
- ''찾기
- JSON날짜
- no getter for property named
- 계좌번호정규식
- spring 엑셀
- spring error #
- js
- 이메일 정규식
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함