Question: using c++ Leap years have 366 days ( 29 days in February). 1996 and 2000 were leap years, but 1900 was not. All years which

Leap years have 366 days ( 29 days in February). 1996 and 2000 were leap years, but 1900 was not. All years which are perfectly divisible by 4 are leap years except for century years (years ending with 00 ), which are leap years only if they are perfectly divisible by 400 . For example: 1968, 2000 and 2004 are leap years, while 1971, 2006, and 2010 are not Write a C++ program that asks the user to enter a year, then the program checks whether the year entered by the user is a leap year or not and displays a message accordingly. Enter a year: 2000 2000 is a leap year. ...Program finished with exit code 0 Press ENTER to exit console. Enter a year: 1800 1800 is not a leap year. ...Program finished with exit code 0 Press ENTER to exit console. Write a C++ Program to calculate the power of a number using pow function. The program asks the user to enter the base and exponent and displays the result, then the program calculates the square root of the base number and displays the result. Sample Input /Output
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
