import java.io.IOException; import java.util.*; public class Main { public static void main(String[] args) throws IOException { Scanner sc = new Scanner(System.in); int max =0; int[] num = new int[3]; int idx =0 ; double sum=0; while(true){ //escape condition 0,0,0 num[0]=sc.nextInt(); num[1]=sc.nextInt(); num[2]=sc.nextInt(); if(num[0]==0&&num[1]==0&&num[2]==0){ break; } for(int i=0; i
find last rectengle point 5 5 5 7 7 5 ans: 7 7 x y 30 20 10 10 10 20 ans : 30 10 first, load the number. then, find diffrent number from values of x. and y too. case 1. 5 5 7 2. 5 7 5 3. 7 5 5 import java.io.IOException; import java.util.*; public class Main { public static void main(String[] args) throws IOException { Scanner sc = new Scanner(System.in); int ret_x=0; int ret_y=0; int[] x = new ..
import java.io.IOException; import java.util.*; public class Main { public static void main(String[] args) throws IOException { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); int w = sc.nextInt(); int h = sc.nextInt(); int left=0; int right=0; int bottom=0; int top=0; int[] length = new int[4]; length[0] = x; //left length[1] = w-x; //right length[2] = y; //bott..
java로 숫자를 입력받아 해당 숫자만큼 case를 입력받아 소수인지 판단하는 소스... /* * @file 1978/Main.java * @thinking print prime number in 4 * * @exception * * @history * Version : Name : Date : Modified * -------- ------ -------- -------------------- * VER1.00 : : 20211115 : New * */ import java.io.IOException; import java.util.*; public class Main { public static void main(String[] args) throws IOException { Scanner sc = ..
문제 자연수 N이 주어졌을 때, N부터 1까지 한 줄에 하나씩 출력하는 프로그램을 작성하시오. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.util.StringTokenizer; //ctrl+shift+o public class Main { public static void main(String[] args) throws IO..
문제 자연수 N이 주어졌을 때, 1부터 N까지 한 줄에 하나씩 출력하는 프로그램을 작성하시오. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.util.StringTokenizer; //ctrl+shift+o public class Main { public static void main(String[] args) throws IO..
문제 본격적으로 for문 문제를 풀기 전에 주의해야 할 점이 있다. 입출력 방식이 느리면 여러 줄을 입력받거나 출력할 때 시간초과가 날 수 있다는 점이다. C++을 사용하고 있고 cin/cout을 사용하고자 한다면, cin.tie(NULL)과 sync_with_stdio(false)를 둘 다 적용해 주고, endl 대신 개행문자(\n)를 쓰자. 단, 이렇게 하면 더 이상 scanf/printf/puts/getchar/putchar 등 C의 입출력 방식을 사용하면 안 된다. Java를 사용하고 있다면, Scanner와 System.out.println 대신 BufferedReader와 BufferedWriter를 사용할 수 있다. BufferedWriter.flush는 맨 마지막에 한 번만 하면 된다. P..