본문 바로가기

CHALLENGE489

[백준/BAEKJOON] 2439번 별 찍기 JAVA 1. 정사각형을 생각하고 푼다. 2. 가로 N 세로 N , 첫 줄은 별하나에 N-1의 공백으로 채운다. 3. FOR문을 돌면서 공백과 줄수만큼 *을 채운다. import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine()); br.close(); StringBuil.. 2021. 9. 7.
[백준/BAEKJOON] 11021번 CASE A+B JAVA 1. 제목과 문제가 조금 다른것 같다. 2. 테스트 케이스 T개를 입력받는다. 3. FOR문을 돌면서 A + B 연산을 하며 바로 CASE # 양식으로 출력한다. import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.StringTokenizer; import java.io.IOException; public class Main { public static void main(String args[]) throws IOException { BufferedReader br= new BufferedReader(new InputStreamReader(System.in)); int a = Integer.parseInt(br.. 2021. 9. 7.
[백준/BAEKJOON] 2742번 찍기 N JAVA 1. 자연수 N을 입력받는다. 2. for 문을 돌면서 한 줄씩 자연수 N을 감소하며 출력한다. import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); sc.close(); for (int i = n; i > 0; --i) { System.out.println(i); } } } 2021. 9. 6.
토익스피킹 파트1 - 지문읽기 연습6 [하루 세번 읽기] 지문읽기 : 2문제 준비시간 : 45초 답변시간 : 45초 1. Let’s look at the weather before moving on to the sports news. Throughout the night, we expect humid conditions, high temperatures, and possible thunderstorms. Although temperatures will remain consistent tomorrow, it will be much drier. That combination will lead to pleasant conditions by the afternoon. 2. We hope you’re enjoying life at Bristol Ap.. 2021. 9. 5.
토익스피킹 파트1 - 지문읽기 연습5 [하루 세번 읽기] 지문읽기 : 2문제 준비시간 : 45초 답변시간 : 45초 1. Hello. You’ve reached Aurora Bakery. The bakery is open from seven A.M. to six P.M. every day. At Aurora, we offer pastries, cakes, and specialty desserts for all occasions. To find out more about our selections, please call back during business hours or visit our Web site. Have a wonderful day. 2. Today on The Fitness Edge Program, our focus is on .. 2021. 9. 5.
토익스피킹 파트1 - 지문읽기 연습4 [하루 세번 읽기] 지문읽기 : 2문제 준비시간 : 45초 답변시간 : 45초 1. Welcome to the Flexway Workout system. Through this instructional recording, we will teach you simple yet effective methods of staying fit right in your own home. Our first workout session includes leg, arm, and core exercises. Before we start, please be sure you are wearing comfortable clothing and have a suitable space available. 2. I’m honored to.. 2021. 9. 5.