변수 : 값을 저장하는 공간, 자료를 저장할수 있는 이름이 주어진 기억장소 (메모리에 저장됨), 메모리 주소에 이름을 붙여준다.
let a = 0;
console.log(a);
a = 1;
console.log(a);
let b;
console.log(b);
b = 2;
console.log(b);
변수 이름 지을 때 유의 할 점.
let apple;
let redApple;
// Bad case❌
let num = 20; // 의미를 알수 없음
// Better case ✅
let myAge = 20; // 의미를 알수 있음
//Bad case ❌
let audio1;
let audio2; //이렇게하면 1은 뭐고 2는 뭐지? 하게 됨
// Better case ✅
let backgroundAudio;
let windAudio;
//꿀팁 🍰
let audioBackground;
let audioWind; // 이렇게 하면 audio만 치면 관련 내용들이 자동 완성 됨.
두 자연수 A와 B에 대해서, A의 배수이면서 B의 배수인 자연수를 A와 B의 공배수라고 한다. 이런 공배수 중에서 가장 작은 수를 최소공배수라고 한다. 예를 들어, 6과 15의 공배수는 30, 60, 90등이 있으며, 최소 공배수는 30이다.
두 자연수 A와 B가 주어졌을 때, A와 B의 최소공배수를 구하는 프로그램을 작성하시오.
const fs = require("fs");
// const input = fs.readFileSync("./dev/stdin").toString().split("\r\n");
const input = fs.readFileSync("example.txt").toString().split("\n");
let numberOftestcase = input.shift();
let length = input.length;
for (let i = 0; i < length; i++) {
let a = input[i].split(" ")[0];
let b = input[i].split(" ")[1];
let common = 1;
if (a > b) [a, b] = [b, a];
for (let j = 1; j < a; j++) {
if (a % j === 0 && b % j === 0) {
common = j;
}
}
answer = "";
if (common === 1) {
answer += a * b;
} else {
answer += (a / common) * (b / common) * common;
}
console.log(answer);
}