HR30 Day 4: Class vs. Instance/Java

Jmnote bot (토론 | 기여)님의 2021년 10월 12일 (화) 23:54 판 (봇: 자동으로 텍스트 교체 (-<source +<syntaxhighlight , -</source> +</syntaxhighlight>))
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

개요[ | ]

import java.io.*;
import java.util.*;
public class Person {
	private int age;	
	public Person(int initialAge) {
		// Add some more code to run some checks on initialAge
		if( initialAge < 0 ) {
			System.out.println("Age is not valid, setting age to 0.");
			initialAge = 0;	
		}
		this.age = initialAge;
	}
	public void amIOld() {
		// Write code determining if this person's age is old and print the correct statement:
		if( this.age < 13 ) {
			System.out.println("You are young.");
			return;
		}
		if( this.age < 18 ) {
			System.out.println("You are a teenager.");
			return;
		}
		System.out.println("You are old.");
	}
	public void yearPasses() {
		// Increment this person's age.
		this.age++;
	}
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int T = sc.nextInt();
		for (int i = 0; i < T; i++) {
			int age = sc.nextInt();
			Person p = new Person(age);
			p.amIOld();
			for (int j = 0; j < 3; j++) {
				p.yearPasses();
			}
			p.amIOld();
			System.out.println();
		}
		sc.close();
	}
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}