// 4.13.3Execises.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include using namespace std; int main() { const int DAYS_PER_YEAR = 365; int ageDays, ageYears; cout << "How old are you in full years: "; cin >> ageYears; ageDays = ageYears * DAYS_PER_YEAR; cout << "You are " << ageDays << " days old."; return 0; }