https://www.codecademy.com/courses/learn-c-plus-plus/projects/cpp-dog-years
When reading the instructions I immediately noticed they were not considering pets younger than 2 without acknowledging it. Am I missing something from the instructions to my code?
#include
int main() {
int dog_age = 1;
int early_years;
int later_years;
int human_years;early_years = 20;
later_years = (dog_age-2)*4;
human_years = early_years + later_years;std::cout << “My name is Bill! Ruff ruff, I am " << human_years << " years old in human years.”;
}