Giter Site home page Giter Site logo

loops_assignment's Introduction

Loop Exercises

  1. Write a while loop and a for loop that takes the variable "num" and logs all the numbers, descending, between "num" and 1.
let num = 9
while (num > 1) {
  console.log(num)
  num -= 1
}
for (let num = 10; num > 0; num -= 1) {
  console.log(num)
}

  1. Write a while loop and a for loop that takes the variable "num", and iterates over all numbers from 0 to "num". For each iteration, it will check if the current number is even or odd, and log that to the screen (e.g. "2 is even")
let num = 0;
while(num <= 10) {
 if(num % 2 === 0) {
   console.log(num + ' This is even')
 } else if (num % 1 === 0){
   console.log(num + ' This is odd')
 }
 num++
}
for (let i = 0; i <= 15; i++){
  if (i % 2 === 0){
    console.log(i + ' This is even')
  } else {
    console.log(i + ' This is odd')
  }
}
  1. Write a while loop and a for loop that takes the variable "num" and iterates over all numbers from 0 to "num". For each iteration of the loop, it will multiply the number by 9 and log the result (e.g. "2 * 9 = 18").
let num = 0;
while(num <= 10) {
 console.log(num + ' * 9 = ' + num * 9)
 num++
}
for (let i = 0; i <= 15; i++){
  console.log(i + " * 9 = " + i * 9)
}

Bonus think of another way to solve it.

Hint Find the final number and increment the loop by 9.
  1. Write a loop that uses console.log to log all the numbers from 1 to 100, with two exceptions. For numbers divisible by 3, log "Fizz" instead of the number, and for numbers divisible by 5 (and not 3), log "Buzz" instead.
for (let i = 0; i <= 100; i++){
  if (i % 3 === 0){
    console.log(i + ' fizz')
  } else if (i % 5 === 0) {
    console.log(i + ' buzz')
  } else {
    console.log(i)
  }
}
  1. Modify your program to log "FizzBuzz", for numbers that are divisible by both 3 and 5 (still log "Fizz" or "Buzz" for numbers divisible by only one of those).
for (let i = 0; i <= 100; i++){
   if (i % 5 === 0 && i % 3 === 0){
    console.log(i + ' fizz')
  } else if (i % 5 === 0) {
    console.log(i + ' buzz')
  } else if (i % 3 === 0){
    console.log(i + ' fizzbuzz')
  } else {
    console.log(i)
  }
}

Bonus:

  1. Write a program that would log the lyrics of the song 99 Bottles of Beer. This is the first verse of the song:

99 bottles of beer on the wall,

99 bottles of beer.

Take one down, pass it around,

98 bottles of beer on the wall.

This verse is repeated, each time with one less bottle, until the number of bottles is 0. When the number of bottles is 2, the verse is:

2 bottles of beer on the wall,

2 bottles of beer.

Take one down, pass it around,

1 bottle of beer on the wall.

In the last line, the word bottles (plural), is replaced with bottle (singular)

When the number of bottles is 1, the verse is:

1 bottle of beer on the wall,

1 bottle of beer.

Take one down, pass it around,

No more bottle of beer on the wall.

let bottle = ' bottles of beer on the wall, '
let bottle2 = ' bottles of beer. '
let take = 'Take one down, pass it around, '
for (let beer = 99; beer >= 1; beer --){
  if (beer === 1 ){
    console.log('\n' + beer + ' bottle of beer on the wall, ' + beer + ' bottle of beer. ' + '\n' + '\n' + take + '\n' + '\n' + 'no more bottles of beer on the wall')
  } else if (beer === 2){
    console.log('\n' + beer + bottle + beer + bottle2 + '\n' + '\n' + take + (beer - 1) + ' bottle of beer on the wall.')
  } else {
    console.log('\n' + beer + bottle + beer + bottle2 + '\n' + '\n' + take + (beer -1) + bottle.slice(0,28)+'.')
  }
}
  1. Use the assignGrade function (given below). Write a function that logs each number from 60 - 100 along with its corresponding letter score. Exp For each number from 81 to 90, log B, like so:
81 - B
82 - B
83 - B
...
function assignGrade(score) {
    if (score > 90) {
        return 'A';
    } else if (score > 80) {
        return 'B';
    } else if (score > 70) {
        return 'C';
    } else if (score > 65) {
        return 'D';
    } else {
        return 'F';
    };
};
for (let assignGrade = 100; assignGrade >= 0; assignGrade --)
if (assignGrade > 89){
  console.log(assignGrade + ' - A')
} else if (assignGrade > 79){
  console.log(assignGrade + ' - B')
} else if (assignGrade > 69){
  console.log(assignGrade + ' - C')
} else if (assignGrade > 64){
  console.log(assignGrade + ' - D')
} else {
  console.log(assignGrade + ' - F')
}

loops_assignment's People

Contributors

jevit01 avatar coreyladovsky avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.