Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

JavaScript Forum


You are currently viewing our JavaScript Forum as a guest. Please register to participate.
Login



Reply
Problem with while loop
Old 06-24-2007, 02:57 PM Problem with while loop
Novice Talker

Posts: 12
Location: Somewhere on a Planet.
Trades: 0
I am having lots of trouble with one of my assignments. This keeps going in a continous loop and I cannot work out whats wrong. I am useless at coding and stuff. So any help is much appreciated.
<HTML>
<HEAD> Enter a number
<TITLE>Question 1 (ii)(a) </TITLE>
<SCRIPT LANGUAGE = "JavaScript" >

var userNumber;

var upperLimit = 20;

userNumber =
window.prompt('Please enter a number in the range 1 to ' + upperLimit, '');

userNumber = parseFloat(userNumber);

while (userNumber < 1 || userNumber > upperLimit)

{
UserNumber =
window.prompt('Please re-enter - number should be in range 1 to '
+ upperLimit, '');

userNumber = parseFloat(userNumber)
};

document.write('<BR>'+'Your chosen number was ' + userNumber)

</SCRIPT>
</HEAD>
<BODY>
</BODY>
</HTML>

NinjaKitty is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 06-24-2007, 03:11 PM Re: Problem with while loop
Extreme Talker

Posts: 238
Location: United States
Trades: 0
Quote:
Originally Posted by NinjaKitty View Post
Code:
 var userNumber;

 var upperLimit = 20;

 userNumber = 
window.prompt('Please enter a number in the range 1 to ' + upperLimit, ''); 

 userNumber = parseFloat(userNumber);

 while (userNumber < 1 || userNumber > upperLimit)  

 {
UserNumber = 
window.prompt('Please re-enter - number should be in range 1 to ' 
+ upperLimit, '');

                         userNumber = parseFloat(userNumber)
};


JavaScript variables are case-sensitive, so you need to change the occurance of UserNumber to userNumber. Good luck.

frost is offline
Reply With Quote
View Public Profile
 
Old 06-24-2007, 03:18 PM Re: Problem with while loop
Novice Talker

Posts: 12
Location: Somewhere on a Planet.
Trades: 0
Thank you.

I am so stupid. I have been staring at that for ages and trying to work out what I had done wrong. I hope that lots of helpful people are going to be around for a while. I have other problems as well.

Last edited by NinjaKitty; 06-25-2007 at 10:51 AM.. Reason: Adding stuff.
NinjaKitty is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Problem with while loop
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.11808 seconds with 12 queries