C++ Program to Convert Days to years and Weeks

Write a C++ Program to Convert Days to years and weeks with an example. This C++ program allows the user to enter the total number of days and convert those into years and weeks. #include<iostream> using namespace std; int main() { int numOfDays, years, weeks; cout << “\nPlease Enter the Number of Days = “; … Read more