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 cnt = sc.nextInt(); double x1,y1,r1; double x2,y2,r2; double dist=0; double r=0; double dr=0; int ret=0; for(int i =0 ; ir){ ret=0; } else if(dist==r){ //4 ret=1; } else if(dist==dr){ //3 ret=1; } else if(dist
import java.io.IOException; import java.util.*; public class Main { public static double w=0; public static void main(String[] args) throws IOException { Scanner sc = new Scanner(System.in); double r = sc.nextInt() ; double ret; ret= r*r*2; r = pfm(r); // System.out.println(Math.round(r*1000000)/1000000.0); // System.out.println(Math.round(ret*100)/100.0); System.out.println(String.format("%.6f"..
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 = ..
로그 관련 설정인 rsyslog.conf에서 사용되는 facility중에서 auth, authpriv에는 차이가 있다. auth는 원격 서비스 접속 기록을 남기며, authpriv는 su 명령어의 사용기록 및 로그인 성공 실패 여부의 기록을 남기게 된다. auth는 security와 같으며 login과 같은 인증프로그램에 관련된 메시지를 기록한다. 반면, authpriv는 ssh와 같이 인증을 필요한 프로그램이 발생한 메시지를 기록한다. The facility is one of the following keywords: auth, authpriv, cron, daemon, kern, lpr, mail, mark, news, security (same as auth), syslog, user, uucp a..
다음은 리눅스 시스템에 백업한 정보가 담겨 있는 USB 메모리를 장착하여 인식 여부 및 장치 파일명을 확인하는 과정이다. 조건에 맞게 ( 괄호 ) 안에 알맞은 내용을 적으시오. 가. 명령어를 이용해서 관련 정보를 확인한다. # ( ① ) 나. 관련 정보가 담겨 있는 파일로 확인한다. # cat ( ② ) ■ 조건 - ①번은 명령어, 명령어와 옵션 등 관련 정보를 출력할 수 있는 명령을 한 번에 기입한다. - ②번은 관련 파일명을 절대 경로로 기입한다. 1: lsusb 2: /etc/fstab ① fdisk -l 또는 dmesg 또는 blkid 2점 ② /proc/partitions 또는 /etc/blkid/blkid.tab 2점 blkid => 현재 하드 디스크의 파티션 정보중의 파일시스템 정보까지 볼수..