- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是作业,因此很清楚我要做什么。
Write a program that calculates the price of a hotel room based on three factors. First, how many will be in one room: 1-2, 3-4, or 5-6? No more than six are allowed in a room. Second, are the guests members of AAA? Third, do they want a room with a view? The rate is calculated as follows:
Basic room rate is: 1-2 people = $50/night 3-4 people = $60/night 5-6 people = $70/night There is a discount for AAA members off of the basic room rate per night: 1-2 people = 15% 3-4 people = 10% 5-6 people = 5% A room with a view costs 10% more per night after all other calculations are performed.
The program should prompt the user for all the inputs, perform the calculations and output the total cost per night. It is suggested to use at least some nested if/else structures to calculate the cost.
像 firebug 和 JSLint 这样的调试器没有任何帮助,我怀疑我只是做了一些完全错误的事情,尽管我以前没有遇到过“嵌套 if”逻辑分配的问题。不管怎样,我是一个完全的新手。
当我通过为 numberOfGuests 输入 1、为 TripleAStatus 输入 N、为 roomView 输入 N 进行测试时,finalRate 返回为 isNaN (我知道这意味着不是数字),但我不明白为什么。
//Variable Declaration
var numberOfPeople;
var tripleAStatus;
var roomView;
var discountRate;
var roomRate;
var finalRate;
var discountPercent;
//Input
numberOfPeople = prompt("How many guests will their be? 6 Maximum.");
tripleAStatus = prompt("Are you a AAA Member? Y/N.");
roomView = prompt("Would you like your room to have a view?");
//Logic
if ((numberOfPeople <= 2) && (numberOfPeople > 0)) {
roomRate = 50;
discountPercent = .15;
} else if ((numberOfPeople <= 4) && (numberOfPeople > 2)) {
roomRate = 60;
discountPercent = .10;
} else if ((numberOfPeople <= 5) && (numberOfPeople > 4)) {
roomRate = 70;
discountPercent = .5;
} else {
alert("Your number of guests must be at least 1 and no more than 6");
}
if (tripleAStatus = "Y") {
discountRate = roomRate - (roomRate * discountRate);
} else if (tripleAStatus = "N") {
discountRate = roomRate;
} else {
alert("You need to answer with either Y or N");
}
if (roomView = "Y") {
finalRate = (discountRate) + ((discountRate) * .10);
} else if (roomView = "N") {
finalRate = discountRate;
} else {
alert("You need to answer with either Y or N");
}
//Output
document.write("Total cost per night is " + "$" + finalRate);
最佳答案
看起来像
discountRate = roomRate - (roomRate * discountRate);
应该阅读
discountRate = roomRate - (roomRate * discountPercent);
这就是为什么你在 FinalRate 中得到 NaN
的原因;此时尚未定义discountRate,因此您的代码实际上为discountRate = 1 - (1 * undefined)
。
正如其他发帖者所提到的,您还需要更改条件以使用 ==
或 ===
; =
是一个赋值运算符,因此您实际上不是检查 tripleAStatus
是否为 "Y"
,而是检查 "Y"
计算结果为 true
(它总是如此)。
tripleAStatus = 'N';
if (tripleAStatus = 'Y') {
// tripleAStatus is now "Y", and the code inside this if will always be executed
}
关于javascript - 当我需要一个数字时,JS 变量输出为 isNaN,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12945086/
Soooooo isNaN 在 JavaScript 中显然是错误的,例如: isNaN('') isNaN(' ') isNaN(true) isNaN(false) isNaN([0]) 返回
这个问题在这里已经有了答案: Why does isNaN(" ") (string with spaces) equal false? (25 个答案) Why does Number.isNaN
我对 NaN 的工作原理感到困惑。我执行了 isNaN(undefined) 它返回了 true 。但是,如果我将使用 Number.isNaN(undefined),它将返回 false。那么我应该
我对 NaN 的工作原理感到困惑。我执行了 isNaN(undefined) 它返回了 true 。但是,如果我将使用 Number.isNaN(undefined),它将返回 false。那么我应该
我需要一个内置函数来检查变量是否包含 Javascript 中的有效数字,如下 this link我尝试使用 is isNaN ,但是当我使用一个引号 ('') 或两个引号 ("") 时,结果始终为
据我所知,== 检查值是否相等,而 is 检查值背后结构的同一性(比如 == = 在某些其他语言中)。 鉴于此,我不明白以下内容: np.isnan(30) == False Out[19]: Tru
在 java 中,我们可以对 float 和 double 值使用 isNan() 方法。 例如: if (!Double.isNaN(0.01)) { // condition happ
我正在尝试开发一个小型财务页面,您可以在其中输入您的元素的价格、您可以负担的预付款以及您想要支付的年数,当您提交时,它会告诉您您的金额我们将按月付款。 我遇到的问题是,如果有人在其中一个字段中输入字母
我有一个脚本,我可以在一个文本框中输入一个数字,它将计算其他文本框中的等效值。 $("input[type=text]").keyup(function () { var number
根据MDN page 1 关于isNaN(强调我的): Unlike all other possible values in JavaScript, it is not possible to re
我无法在我的Visual C++项目中编译glm::isnan()。 #include glm::vec3 my_vector = ... ; bool b = glm::isnan(my_vect
我正在创建一个小计算器。其中部分功能允许您输入最多 4 个数字,但也可以只输入 1,2 或 3 个数字。我的代码可以正常工作,但当我只输入 1、2 或 3 个数字时,我会得到未输入数字的 NaN 结果
我有两个字段。第一个是名称字段,另一个是数字字段。我想检查数字字段是否为数字,如果不是,则将使用 select() 并且背景变为黄色而不是蓝色。不知何故,我没有得到我想要的。 window.onloa
新手在这里学习 我正在尝试检查输入到我的表单中的数据,如果输入到第二个或第三个输入中的数据不是数字(即按字母顺序排列),则向用户显示信息不是数字的通知。我正在使用“isNaN”函数来执行此操作,但根据
我正在使用 isNan 函数来检查输入的值是否为数字: if(isNaN(num)) { alert('I am not a number'); } else { // } 但是,如
这是我放在文本框上以限制输入数字的属性。 onKeyPress="if(isNaN(String.fromCharCode(event.keyCode))) event.preventDefault
我有一个函数来测试提示输入是否是数字,如下所示: function myFunction() { var person = prompt("Please enter your name", "
我是 JavaScript 的新手,我尝试运行一个简单的脚本,如果它没有正确完成(即如果条目不是数字),它会给我的字段一个红色的边框,但如果该字段则将边框颜色变为绿色然后正确填写,但无法提交表单,因为
只是 try catch 非数字输入阅读很多内容。尝试了decimalDigitCharacterSet(发现很难相信以“decimal”一词开头的东西不包含小数)。尝试可变字符集来添加小数。一直在努
isnan() 函数也接受 .(点)。如何预防它们。这是示例代码: var Price = $("#Price").val(); if (Pric
我是一名优秀的程序员,十分优秀!