1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
g100num [7]
3 years ago
12

Write two statements to read in values for birthMonth followed by birthYear, separated by a space. Write a statement to print th

e date using the format birthMonth/birthYear. Ex: 1 2000 (User's input) 1/2000 (Program's output)
Computers and Technology
1 answer:
Ede4ka [16]3 years ago
5 0

Answer:

// here is code in the C++.

#include <bits/stdc++.h>

using namespace std;

// main function

int main() {

// variable to store the input

int birth_month,birth_year;

cout<<"enter birth month:";

// read the birth month

cin>>birth_month;

cout<<"enter birth year:";

// read the birth year

cin>>birth_year;

// print the output

cout<<birth_month<<"/"<<birth_year<<endl;

return 0;

}

Explanation:

Declare two variables to store the birth month and birth year.Read the inputs from the user and assign it the variables.Print the birth month and year separated by a slash "/".

Output:

enter birth month:1                                                                                                        

enter birth year:2000                                                                                                      

1/2000

You might be interested in
*****HELP******
trasher [3.6K]

Answer:

True

Explanation:

The Most Favored Nation (MFN) status and national treatment are provided for in article 4 of the Trade Related Aspects of Intellectual Property Rights (TRIPS) Agreement and it is stated that when a member grants favor, advantage, immunity , or privilege to citizens of a country, the country shall grant similar favor, privileges and advantages to the citizens of the other members

Therefore;

<em>True</em> Most Favored Nation (MFN) status and national treatment are also included in the Agreement on Trade-Related Aspects of intellectual Property Rights (TRIPS).

5 0
3 years ago
How to delete nonsense answers to questions I added? please help
DiKsa [7]

in order to delete answers from your questions, you have to rate them one star , or at least that's what I do, and then report it and then brainly will determine if it's something that needs to be taken down or not

5 0
3 years ago
A circuit contains three resistors connected in series. The value of R1 is 200 ohms the value of R2 is 640 ohms and the value of
gogolik [260]
If the there are no other elements in the circuit in addition to
the three resistors, then the total voltage of the power supply
appears across the resistors ... 6 volts.
7 0
3 years ago
Psychologists studying infant memory want to determine at what age babies can remember specific events. An experimenter uses sev
vodka [1.7K]

Answer:

the number of imitated actions

Explanation:

According to my research on different research terminology, I can say that based on the information provided within the question the dependent variable in this situation is the number of imitated actions. This is because the the age in which babies remember specific events depends completely on the amount of actions imitated by the children.

I hope this answered your question. If you have any more questions feel free to ask away at Brainly.

5 0
3 years ago
Discuss this statement with emphasis of the ethical and social comcerns of IT use
sp2606 [1]

Answer:

https://courses.lumenlearning.com/wm

introductiontobusiness/chapter/ethical-and-social-issues/

Explanation:

hope it helps

3 0
3 years ago
Other questions:
  • What is the difference between HTML and CSS? * 1. CSS is a markup language unlike HTML 2. HTML is a backend technology and CSS i
    7·1 answer
  • What is cyberbullying?
    14·2 answers
  • When web developers specify color values for text or backgrounds, they often represent RGB (red-green-blue) colors using a six-d
    13·1 answer
  • What part of speech is contend
    6·1 answer
  • A Uniform Resource Locator (URL) consists of three separate parts: network protocol, host, and web browser.
    11·2 answers
  • Which kind of device is hardware capable of transferring items from computers and devices to transmission media and vice versa?
    10·1 answer
  • Identify the following as True or False.
    14·1 answer
  • What are the main features cyber law of Nepal​
    13·1 answer
  • Martha is a network monitoring technician working on a firewall for her company’s network. To filter traffic going through the f
    12·2 answers
  • When you add encryption to a powerpoint presentation what does it do
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!