Purchase Solution

Intro to C++

Not what you're looking for?

Ask Custom Question

Would like you to check and correct this problem.

When the program is ran it is supposed to look like this on the screen.

Serendipity Booksellers

Date:

Qty ISBN Title Price Total
_______________________________________________

Subtotal
Tax
Total

Thank You for Shopping at Serendipity!

(This is my program)

int main()
{

cout << "Serendipity Booksellers" ; endl;

cout << "Date:"; endl;

cout << " List Qty, ISBN, Title, Price, and Total on one line"; endl;
cout << "Place a line under this list"; endl;

cout << "Indent Subtotal Line"; endl;
cout << "Indent Tax Line"; endl;
cout << "Indent Total Line"; endl;

cout << "Thank You for Shopping at Serendipity!"; endl;

cout << endl;

Purchase this Solution

Solution Preview

The correct one should be this(also in the attached file):

#include <iostream>

int main()
{

cout << "Serendipity Booksellers" << endl; ...

Purchase this Solution


Free BrainMass Quizzes
Basic Networking Questions

This quiz consists of some basic networking questions.

Javscript Basics

Quiz on basics of javascript programming language.

Java loops

This quiz checks your knowledge of for and while loops in Java. For and while loops are essential building blocks for all Java programs. Having a solid understanding of these constructs is critical for success in programming Java.

C# variables and classes

This quiz contains questions about C# classes and variables.

Word 2010: Table of Contents

Ever wondered where a Table of Contents in a Word document comes from? Maybe you need a refresher on the topic? This quiz will remind you of the keywords and options used when working with a T.O.C. in Word 2010.