Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#include <iostream>
int main()
{
std::cout << "What is your age?" << std::endl;
/* This is not a great approach to getting input from
a user as you will get issues if they enter a
value that is not an integer but for week 1 it's
fine. */
int age;
std::cin >> age;
//COMPLETE ME
return 0;
}