210k views
1 vote
In C++ Please :

Write two statements to read in values for birthMonth followed by birthYear, separated by a space. Write a statement to print the date using the format birthMonth/birthYear. Ex: 1 2000 (User's input), 1/2000 (Program's output)

1 Answer

6 votes

Answer:

  1. int birthMonth, birthYear;
  2. cin >> birthMonth;
  3. cin >> birthYear;
  4. cout << birthMonth << "/" << birthYear;

Step-by-step explanation:

Firstly, we declare two integer type variables, birthMonth and birthYear (Line 1). Next, we use cin as the standard input stream to get the birth month and year from user (Line 3 - 4). Finally, we print the date using cout. We can chain the << operator to create a date string with format birthMonth/birthYear as expected by question (Line 6)

User Srujana Puttagunta
by
7.8k points