示例:检查最后一位数字
/* 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.
在上面的示例中,要求用户输入三个整数。
这三个整数值存储在变量a , b和c中 。
整数值的最后一位使用模数运算符 %
计算。
%
给出余数。例如, 58%10给出8 。
然后使用if..else
语句和逻辑AND 运算符 &&
运算符比较所有最后一位数字。