// Khai báo 2 biến x, y nhận giá trị số bất kì // Khai báo các biến sum, sub, mul, div lần lượt gán giá trị tổng, hiệu, tích, thương của x, y cho từng biến.

1 câu trả lời

<!DOCTYPE html>
<html lang="en">
   <head>
      <title>HTML</title>
   </head>
   <body>
      Nhập 2 số:
      <input type="number" placeholder="Nhập số x" >
      <input type="number" placeholder="Nhập số y" >
      <button onclick="ham()">
         Scan
      </button>
      <script>
         function ham() {
            let x=document.getElementById("input").value
            let y=document.getElementById("int").value
            let sum=parseInt(x)+parseInt(y)
            let sub=parseInt(x)-parseInt(y)
            let mul=parseInt(x)*parseInt(y)
            let div=parseInt(x)/parseInt(y)
            console.log("Tong: ",sum)
            console.log("Hieu: ",sub)
            console.log("Tich: ",mul)
            console.log("Thuong: ",div.toFixed(2))
         }
      </script>
   </body>
</html>

Câu hỏi trong lớp Xem thêm