JAVA 프로그래밍/Do it! 자바 프로그래밍 입문
operator/OperationEx4.java
불두화
2021. 5. 12. 17:24
이전까지 했던 책의 예제들 업로드합니다.
감사합니다.
package operator;
public class OperationEx4 {
public static void main(String[] args) {
int fatherAge = 45;
int motherAge = 47;
char ch;
ch = (fatherAge > motherAge) ? 'T' : 'F';
System.out.println(ch);
}
}