Skip to content

nayodevbc/core-code-from-scratch-readme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

core-code-from-scratch-readme

##==========================================================## Pizza recipe 🍕

  1. Stretch the dough.
  2. Put on olive oil on the dough.
  3. Put sauce on the dough.
  4. Put cheese on.
  5. Add slices of pepperoni (as many as you want).
  6. Cook pizza in the oven for 20 mins at 350 farenheit.
  7. Take out the pizza and cut it into even pieces.
  8. Enjoy! :)

##==========================================================## Convert Farenheit to Celsius 🌡️

  1. Take the Farenheit temperature input and substract 32.
  2. Multiply the result of the substracion by 5/9.
  3. The product of that is your temperature in Celsius. Convert Celsius to Farenheit 🌡️
  4. Take the Celsius temperature input and multiply it by 9/5.
  5. Add 32 to the product of that.
  6. The resulting temperature is now in Farenheit.

##==========================================================## Formula cube 🧊

  1. Identify the length, width and height of the cube.
  2. Multiply them.
  3. The product is the volume of the cube.

Formula sphere 🪩

  1. Identify and measure the radius of the sphere.
  2. Now multiply the radius 3 times.
  3. Multiply by pi.
  4. Lastly multiply by 4/3. The product of that is the volume of the sphere.

Formula pyramid

  1. First you need the area of the base.
  2. Multiply length by width of the base to get the area.
  3. The multiiply the product of that by the height of the pyramid.
  4. Divide the product of that by 3 and the result of that is the volume of the pyramid.

##==========================================================## Numbers image

##==========================================================## How Old Are You

Date birthDate; Date today; int age = today-birthDate; print age;

##==========================================================## Find the Treasure

A & C have treasure

##==========================================================## Logic Problem

Bob is telling the truth.

##==========================================================##

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors