This repository has been archived by the owner on Jun 29, 2024. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Simple Calculator
Description:
Develop a basic calculator application that allows users to perform fundamental arithmetic operations. The calculator should support addition, subtraction, multiplication, and division. The user inputs two numbers and selects an operation, and the application displays the result. This project helps in understanding basic programming concepts like input handling, conditional statements, and simple arithmetic operations.
ToDo List
Description:
Create a console-based or graphical user interface (GUI) application for managing a list of tasks. The application should allow users to add new tasks, delete existing ones, and mark tasks as completed. This project introduces the concepts of data structures (like lists or arrays), user input handling, and basic UI design if a GUI is implemented. It's a practical way to learn about managing state and user interactions in an application.
Number Guessing Game
Description:
Implement a simple number guessing game where the computer generates a random number within a specified range, and the player attempts to guess the number within a certain number of attempts. The game should provide feedback on whether the guess was too high, too low, or correct. This project helps in learning about loops, conditionals, and random number generation, as well as how to handle user input and provide interactive feedback.
Temperature Converter
Description:
Build an application that converts temperatures between Celsius, Fahrenheit, and Kelvin scales. Users should be able to input a temperature value and select the conversion type, and the application will display the converted temperature. This project introduces the concept of mathematical formulas and conversions, user input handling, and can be extended to practice building a user-friendly interface if desired. It's a useful exercise in understanding and implementing conversion logic in programming.