[python 파이썬] 백준 <1. 입출력과 사칙연산> 1~5번 2557번, 1000번, 1001번, 10998번, 1008번 코드
[2557번] Hello Worldprint("Hello World!") [1000번] A+BA, B = input().split()print(int(A) + int(B))a, b = map(int, input().split())print(a + b) [1001번] A-BA, B = input().split()print(int(A) - int(B)) [10998번] A*Ba, b = map(int, input().split())print(a * b) [1008번] A/Ba, b = map(int, input().split())print(a / b) 워낙 간단한 문제들이라 부연 설명 없이 깃허브 링크 첨부!https://github.com/yenyen31/BaekjoonAlgorithm GitH..
[자바스크립트 JavaScript] Math객체의 다양한 메소드
console.log(Math.max(2, -10, 50, -12, 180)); // -12 절댓값 (Absolute Number) Math.abs(x)를 하면 x의 절댓값이 리턴됩니다. console.log(Math.abs(-30)); // 30 console.log(Math.abs(30)); // 30 최댓값 (Maximum) Math.max 함수에 파라미터로 여러 수를 넘겨주면, 그중 가장 큰 값이 리턴됩니다. console.log(Math.max(2, -10, 50, -12, 180)); // 180 최솟값 (Minimum) Math.min 함수에 파라미터로 여러 수를 넘겨주면, 그중 가장 작은 값이 리턴됩니다. console.log(Math.max(2, -10, 50, -12, 180)); //..