Question

Write multiple if statements: If carYear is before 1967, print "Probably has few safety features." (without...

Write multiple if statements:
If carYear is before 1967, print "Probably has few safety features." (without quotes).
If after 1970, print "Probably has seat belts.".
If after 1990, print "Probably has electronic stability control.".
If after 2002, print "Probably has airbags.".
End each phrase with period and newline. Ex: carYear = 1995 prints:

Probably has seat belts.
Probably has electronic stability control.

the answer:

#include <iostream>
using namespace std;

int main() {
int carYear;

carYear = 2001;

/* Your solution goes here */

return 0;
}

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Screenshot of the Code:

Sample Output:

Code to Copy:

#include<iostream>

using namespace std;

int main(){

int carYear;

carYear = 2001;

// If condition for year before 1967.

if(carYear <1967)

cout<<"Probably has few safety features."<<"\n";

// If condition for year after 1970.

if(carYear >1970)

cout<<"Probably has seat belts."<<"\n";

// If condition for year after 1990.

if(carYear >1990)

cout<<"Probably has electronic stability control."<<"\n";

// If condition for year after 2002.

if(carYear >2002)

cout<<"Probably has airbags."<<"\n";

return 0;

}

Add a comment
Know the answer?
Add Answer to:
Write multiple if statements: If carYear is before 1967, print "Probably has few safety features." (without...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Reset Write multiple if statements: If carYear is before 1968, print 'Probably has few safety features'...

    Reset Write multiple if statements: If carYear is before 1968, print 'Probably has few safety features' (without quotes). If after 1969, print Probably has head rests." If after 1992, print "Probably has electronic stability control. If after 2001, print 'Prodably has tire- pressure monitor End each phrase with period and newline. Ex carYear 1995 prints Probably has head rests. Probably has electronic stability control. sinclude ciostream 2 using nanespace std int main) 7 carYear 1979 9Your solution goes here/ s...

  • CHALLENGE ACTIVITY 3.3.4: Multiple if statements: Print car info. Write multiple if statements. If carYear is...

    CHALLENGE ACTIVITY 3.3.4: Multiple if statements: Print car info. Write multiple if statements. If carYear is 1969 or earlier, print "Probably has few safety features." If 1970 or higher, print "Probably has seat belts." If 1990 or higher, print "Probably has anti-lock brakes." If 2000 or higher, print "Probably has air bags." End each phrase with period and newline. Ex: carYear = 1995 prints: Probably has seat belts. Probably has anti-lock brakes. import java.util.Scanner; public class CarFeatures { public static...

  • please read instructions on the first picture and follow it Discussion Board: Chapter 1 Due: Jun...

    please read instructions on the first picture and follow it Discussion Board: Chapter 1 Due: Jun 28, 2019 at 11:59 PM Please read the article titled Evolution of Operations Planning and Control: from production to supply chains In at least three paragraphs, describe how and why the focus of operations planning and control has changed over time. While one might argue that answers consisting of sentences quoted from articles do not represent plagiarism, I do not consider them acceptable, and...

  • please read instructions on the first picture and follow it Discussion Board: Chapter 1 Due: Jun...

    please read instructions on the first picture and follow it Discussion Board: Chapter 1 Due: Jun 28, 2019 at 11:59 PM Please read the article titled Evolution of Operations Planning and Control: from production to supply chains In at least three paragraphs, describe how and why the focus of operations planning and control has changed over time. While one might argue that answers consisting of sentences quoted from articles do not represent plagiarism, I do not consider them acceptable, and...

  • Using the book, write another paragraph or two: write 170 words: Q: Compare the assumptions of...

    Using the book, write another paragraph or two: write 170 words: Q: Compare the assumptions of physician-centered and collaborative communication. How is the caregiver’s role different in each model? How is the patient’s role different? Answer: Physical-centered communication involves the specialists taking control of the conversation. They decide on the topics of discussion and when to end the process. The patient responds to the issues raised by the caregiver and acts accordingly. On the other hand, Collaborative communication involves a...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT