- 난이도: Lv0
프로그래머스 링크: https://school.programmers.co.kr/learn/courses/30/lessons/250132
풀이 링크(Github): hayannn/CodingTest_Java/프로그래머스/0/250132#. [PCCE 기출문제] 2번 / 피타고라스의 정리
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int c = sc.nextInt();
int b_square = c - a;
System.out.println(b_square);
}
}
풀이 시간 : 3분
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int c = sc.nextInt();
int b_square = c*c - a*a; // C^2 - a^2으로 수정
System.out.println(b_square);
}
}