📜  JavaScript程序加两个数字

📅  最后修改于: 2020-09-27 04:43:31             🧑  作者: Mango

在此示例中,您将学习如何使用JavaScript中的各种方法将两个数字相加并显示它们的总和。

我们使用加法运算符 +将两个或多个数字相加。

示例1:加两个数字
let num1 = 5;
let num2 = 3;

// add two numbers
let sum = num1 + num2;

// display the sum
console.log('The sum of ' + num1 + ' and ' + num2 + ' is: ' + sum);

输出

The sum of 5 and 3 is: 8

示例2:添加用户输入的两个数字
// store input numbers
let num1 = prompt('Enter the first number ');
let num2 = prompt('Enter the second number ');

//add two numbers
let sum = num1 + num2;

// display the sum
console.log(`The sum of ${num1} and ${num2} is ${sum}`);

输出

Enter the first number 5
Enter the second number 3
The sum of 5 and 3 is: 8

上面的程序要求用户输入两个数字。在这里,使用prompt()来接受用户的输入。

let num1 = prompt('Enter the first number ');
let num2 = prompt('Enter the second number ');

然后,计算数字的总和。

let sum = num1 + num2;

最后,显示总和。为了显示结果,我们使用了模板字面量 ` ` 。这使我们可以在字符串包含变量。

console.log(`The sum of ${num1} and ${num2} is ${sum}`);

要将变量包含在`` ,您需要使用${variable}格式。

注意 :模板字面量是ES6中引入的,某些浏览器可能不支持它们。要了解更多信息,请访问JavaScript模板字面量支持。