Add Enhanced Interactive C++ Program for Greeting and Arithmetic Operations#1
Open
Meghanaaa78 wants to merge 1 commit into
Open
Add Enhanced Interactive C++ Program for Greeting and Arithmetic Operations#1Meghanaaa78 wants to merge 1 commit into
Meghanaaa78 wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This Pull Request introduces an enhanced C++ program that includes user interaction, input validation, and arithmetic operations. The following features and improvements have been implemented:
Greeting Message: The program starts by printing "Hello, World!" to the console.
User Input for Name: Prompts the user to enter their name, allowing spaces in the input by using std::getline.
Personalized Greeting: Greets the user with their entered name.
Input Validation for Numbers: Asks the user for two integers, with validation to handle invalid inputs and prompt the user to enter correct values.
Arithmetic Operation: Computes the sum of the two entered integers.
Display Results: Outputs the result of the addition to the console.
Key Changes:
Input Handling: Improved user input handling by using std::getline for names and robust validation for numeric inputs.
Error Handling: Added loops to ensure the user inputs valid integers and handle incorrect inputs gracefully