fork-commit-merge / fork-commit-merge

Fork, Commit, Merge. A project designed to help you familiarize yourself with the open source contribution workflow on GitHub!

Home Page:https://forkcommitmerge.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fork, Commit, Merge - Easy Issue (Lua)

nikohoffren opened this issue · comments

Fork, Commit, Merge - Easy Issue (Lua)

Lua Temperature Converter

Note: You don't have ask permission to start solving the issue or get assigned, since these issues are supposed to be always open for new contributors. The actions-user bot will reset the file back to previous state for the next contributor after your commit is merged. So you can just simply start working with the issue right away!

Objective:

  • Write a Lua script that converts temperatures between Fahrenheit and Celsius.

Description:

  • Your task is to create a simple Lua program that can:
    • Prompt the user for the type of conversion they wish to make (Fahrenheit to Celsius or Celsius to Fahrenheit).
    • Ask the user to enter the temperature in the chosen format.
    • Compute and display the converted temperature.

Requirements:

  • User Input:
    • Prompt the user with: "Choose type of conversion: (1) Fahrenheit to Celsius or (2) Celsius to Fahrenheit".
    • Based on user's choice, prompt for the temperature: "Enter temperature in [chosen format]: ".

Display Result:

  • Display the converted temperature in the format: The temperature is [converted value] degrees [target format].

Error Handling:

  • If a user provides non-numeric input, display an error message: "Invalid input. Please enter a numeric value."

Code Quality:

  • Use meaningful variable names.
  • Comment major code sections.

The temperature converter functions are already added to your project:

local function celsiusToFahrenheit(celsius)
    return celsius * 9/5 + 32
end

local function fahrenheitToCelsius(fahrenheit)
    return (fahrenheit - 32) * 5/9
end

Start by opening the tasks/lua/easy directory from the root of the project.
Then open temperature_converter.lua file and start working on your solution!

To test the program, you can run lua tasks/lua/easy/temperature_converter.lua to see if it works as expected.


To work with this issue, you need to have Lua installed to your local machine.
Check out README.md for more instructions of installing Lua and how to make a pull request.

Feel free to ask any questions here if you have some problems!

Also, kindly give this project a star to enhance its visibility for new developers!