Results 1 to 2 of 2
  1. #1
    Fliest_aladdin's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    YB house
    Posts
    2,708
    Reputation
    31
    Thanks
    288
    My Mood
    Breezy

    How to make unlimited user loop?

    Hello,

    so i'm trying to make a program which prompts the user for like class name, grade, and class hours
    It should repeartdly ask him until he inputs an emmpty string.

    1) i don't know how to make the unlimited loop until empty is put in.

    one the user inputs those 3 inputs, then I want to be able to assign letter grades depending on his answers
    2) so it will give me answer point grade by dividing number of grades earned by the number of class hours.



    This is my first time tackling website dev, so i'm a complete beginner.,
    Add me on IM
    Add me on IM




    If you would like to Vouch For me
    Tutorial on HOW to SE FitBit

  2. #2
    Hackinet's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    525
    Reputation
    260
    Thanks
    1,024
    Quote Originally Posted by Fliest_aladdin View Post
    Hello,

    so i'm trying to make a program which prompts the user for like class name, grade, and class hours
    It should repeartdly ask him until he inputs an emmpty string.

    1) i don't know how to make the unlimited loop until empty is put in.

    one the user inputs those 3 inputs, then I want to be able to assign letter grades depending on his answers
    2) so it will give me answer point grade by dividing number of grades earned by the number of class hours.



    This is my first time tackling website dev, so i'm a complete beginner.,
    Code:
    var grade='';
    var clases='';
    var hours='';
    while(grade==='')
    {
    grade=prompt("Enter Grades");
    }
    while(clases==='')
    {
    clases=prompt("Enter Class");
    }
    while(hours==='')
    {
    hours=prompt("Enter Hours");
    }
    alert("Your grade is "+(hours/grade)); //assign grades alternative to the value
    Last edited by Hackinet; 06-29-2018 at 08:32 AM.

Similar Threads

  1. Replies: 8
    Last Post: 08-17-2014, 09:03 PM
  2. ~~ Request: how to make unlimited ak47 gold rifle,no expiry?~~~
    By kornrockz in forum Blackshot Mods & Modding
    Replies: 3
    Last Post: 08-13-2013, 10:52 PM
  3. how to make a user title?
    By Jon in forum General
    Replies: 6
    Last Post: 07-28-2011, 12:49 PM
  4. Video:How to make Unlimited ammo Trainer
    By Hitman101 in forum Programming Tutorials
    Replies: 6
    Last Post: 03-13-2010, 10:36 PM
  5. Anyone got a Idea of how too make unlimitted respawns?
    By Wiirtuallca in forum Combat Arms Help
    Replies: 6
    Last Post: 10-15-2009, 08:48 PM