Exercises
- Output Hello World
- Output 5 Favorites (color, movies, food, apps, programming languages, etc.)
- Output your name in large letters with "*" as the lines for the characters.
- Ask for user's name and output a greeting with the given name.
- Ask for a number and output the square (power of 2)
- Ask for a year and calculate the next 5 leap years.
- Convert a given Fahrenheit temperature to Celsius.
Possible Solutions
Output Hello World
You can also use the line using namespace std; and write cout without the std::
You can also use the line using namespace std; and write cout without the std::
Output 5 Favorites (color, movies, food, apps, programming languages, etc.)