📌  相关文章
📜  JavaScript程序检查数字是否最后一位相同

📅  最后修改于: 2020-09-27 05:14:29             🧑  作者: Mango

在此示例中,您将学习编写一个程序来检查JavaScript中三个数字的最后一位是否相同。

示例:检查最后一位数字
/* program to check whether the last digit of three
numbers is same */

// take input
let a = prompt('Enter a first integer: ');
let b = prompt('Enter a second integer: ');
let c = prompt('Enter a third integer: ');

// find the last digit
let result1 = a % 10;
let result2 = b % 10;
let result3 = c % 10;

// compare the last digits
if(result1 == result2 && result1 == result3) {
    console.log(`${a}, ${b} and ${c} have the same last digit.`);
}
else {
    console.log(`${a}, ${b} and ${c} have different last digit.`);
}

输出

Enter a first integer: 8
Enter a second integer: 38
Enter a third integer: 88
8, 38 and 88 have the same last digit.

在上面的示例中,要求用户输入三个整数。

这三个整数值存储在变量abc中

整数值的最后一位使用模数运算符 %计算。

%给出余数。例如, 58%10给出8

然后使用if..else语句和逻辑AND 运算符 && 运算符比较所有最后一位数字。