In this exercise, you will write code using cin
and the extraction operator >>
to allow a user to enter their date of birth.
The variable m
represents the month, d
represents the day, and y
represents the year.
Assume that the user will enter their date of birth in the order of month, day, year, with each value being separated by a blank space.
You do not need to prompt the user for any information using cout
Our test program will automatically 'pretend' to be the user and enter the values 2
15
and 1993
automatically.
So, your code should consist only of the cin
statement(s). No other code should be necessary.
You can find my solution by clicking on the solution.txt file on the left pane. But please make sure you give it a go yourself first, and only check the solution if you really get stuck.
#include
#include
#include "gtest/gtest.h"
#include "helpers/iohelper.h"
void date_of_birth();
namespace {
class Evaluate : public ::testing::Test {
protected:
Evaluate() {
// You can do set-up work for each test here.
}
virtual ~Evaluate() {
// You can do clean-up work that doesn't throw exceptions here.
}
// Objects declared here can be used by all tests in the test case for Foo.
};
TEST_F(Evaluate, ExampleTest) {
INJECT_INPUT(std::string("2\n15\n1993\n"), ;);
std::pair output = CAPTURE_OUTPUT(date_of_birth());
std::string stdout = output.first;
EXPECT_EQ("2 15 1993", stdout) << "Double check that you are extracting 3 values from cin";
}
} // namespace
#include
using namespace std;
void date_of_birth() {
int m {};
int d {};
int y {};
//----DO NOT MODIFY THE CODE ABOVE THIS LINE----
//----WRITE YOUR CODE BELOW THIS LINE----
cin >> m;
cin >> d;
cin >> y;
/*
The following will also work
cin >> m >> d >> y;
*/
//---- WRITE YOUR CODE ABOVE THIS LINE----
//---- Do NOT MODIFY THE CODE BELOW THIS LINE----
cout << m << " " << d << " " << y;
}
#include
using namespace std;
void date_of_birth() {
int m {};
int d {};
int y {};
//----DO NOT MODIFY THE CODE ABOVE THIS LINE----
//----WRITE YOUR CODE BELOW THIS LINE----
cin >> m;
cin >> d;
cin >> y;
/*
The following will also work
cin >> m >> d >> y;
*/
//---- WRITE YOUR CODE ABOVE THIS LINE----
//---- Do NOT MODIFY THE CODE BELOW THIS LINE----
cout << m << " " << d << " " << y;
}