"HR30 Day 4: Class vs. Instance/Java"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-<source +<syntaxhighlight , -</source> +</syntaxhighlight>))
 
3번째 줄: 3번째 줄:
* [[HR30 Day 4: Class vs. Instance]]
* [[HR30 Day 4: Class vs. Instance]]


<source lang='java'>
<syntaxhighlight lang='java'>
import java.io.*;
import java.io.*;
import java.util.*;
import java.util.*;
</source>
</syntaxhighlight>
<source lang='java'>
<syntaxhighlight lang='java'>
public class Person {
public class Person {
private int age;
private int age;
34번째 줄: 34번째 줄:
this.age++;
this.age++;
}
}
</source>
</syntaxhighlight>
<source lang='java'>
<syntaxhighlight lang='java'>
public static void main(String[] args) {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
Scanner sc = new Scanner(System.in);
52번째 줄: 52번째 줄:
}
}
}
}
</source>
</syntaxhighlight>

2021년 10월 12일 (화) 23:54 기준 최신판

개요[ | ]

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 }}