이전까지 했던 책의 예제들 업로드합니다.
감사합니다.
package operator;
public class OperationEx1 {
public static void main(String[] args) {
int mathScore = 90;
int engScore = 70;
int totalScore = mathScore + engScore;
System.out.println(totalScore); // 총점 구하기
double avgScore = totalScore / 2.0; // 평균 구하기
System.out.println(avgScore);
}
}
'JAVA 프로그래밍 > Do it! 자바 프로그래밍 입문' 카테고리의 다른 글
operator/OperationEx3.java (0) | 2021.05.12 |
---|---|
operator/OperationEx2.java (0) | 2021.05.11 |
chapter2/ExplicitConversion.java (0) | 2021.05.11 |
chapter2/ImplicitConversion.java (0) | 2021.05.11 |
chapter2/Constant.java (0) | 2021.05.11 |