Solution Manual for Starting Out with C++: Early Objects, 8/E 8th Edition : 013336092Xinstant download
Solution Manual for Starting Out with C++: Early Objects, 8/E 8th Edition : 013336092Xinstant download
http://testbankbell.com/product/solution-manual-for-starting-out-
with-c-early-objects-8-e-8th-edition-013336092x/
TestBankBell.com: Your Ultimate Source for Test Banks and Academic Resources
Keywords:
test bank, academic resources, study guides, test preparation, testbankbell, download test
bank, textbook solutions
Contact Information:
Visit us at: https://testbankbell.com - For inquiries, email us:
[email protected]
Important Links:
Download Test Banks: https://testbankbell.com/
https://testbankbell.com/product/starting-out-with-c-early-
objects-9th-edition-gaddis-test-bank/
testbankbell.com
https://testbankbell.com/product/solution-manual-for-starting-out-
with-c-early-objects-6th-edition-tony-gaddis-judy-walters-godfrey-
muganda/
testbankbell.com
Test Bank Starting Out with Java: Early Objects, 5/E Tony
Gaddis
https://testbankbell.com/product/test-bank-starting-out-with-java-
early-objects-5-e-tony-gaddis/
testbankbell.com
https://testbankbell.com/product/solution-manual-for-starting-out-
with-c-from-control-structures-to-objects-9th-edition-tony-gaddis/
testbankbell.com
Solution Manual for Starting Out with C++: From Control
Structures through Objects, 7/E 7th Edition : 0132774178
https://testbankbell.com/product/solution-manual-for-starting-out-
with-c-from-control-structures-through-objects-7-e-7th-
edition-0132774178/
testbankbell.com
https://testbankbell.com/product/solution-manual-for-starting-out-
with-visual-c-5th-edition-tony-gaddis/
testbankbell.com
https://testbankbell.com/product/solution-manual-for-starting-out-
with-java-from-control-structures-through-objects-5-e-5th-
edition-0132989999/
testbankbell.com
https://testbankbell.com/product/solution-manual-starting-out-with-
python-4th-edition/
testbankbell.com
Solution Manual for Starting Out with C++:
Early Objects, 8/E 8th Edition : 013336092X
Full download link at: https://testbankbell.com/product/solution-manual-
for-starting-out-with-c-early-objects-8-e-8th-edition-013336092x/
LESSON SET 2
Lesson 2B:
ASSUMPTIONS
Lesson 2A:
1. Students have a basic knowledge of the programming environment. They can open, edit,
compile and run simple programs.
Lesson 2B:
1. Students are familiar with the output and assignment statements in C++
2. Students are familiar with the general basic outline of a C++ program so
that they can generate a simple program
3. Students are familiar with the basic data types including character and string (class treated
as a data type )
LAB ASSIGNMENTS
Lesson 2A:
Lesson 2B:
LESSON 2A
This is a simple lab that continues to work with the cout statement and introduces
the assignment statement.
LESSON 2B
LAB 2.3: Rectangle Area and Perimeter
Although Lab 2.3 asks students to create a program from scratch, it is not labeled
as optional since it is so similar to Lab 2.2 that most students should not find it
too difficult.
This lab introduces characters and the string class which is treated as a data type. The distinction of
the string class from true data types is not explained until the student is introduced to arrays of
characters later in the manual.
A solution is found in stringcharKey.cpp in the instructor’s folder for Lesson Set 2.
Possible solutions to all labs are given in the instructor’s folder for Lesson Set 2.
Answers to Review Questions
Chapter 2
1. 1, 2, 3
2. double temp, weight, age;
3. int months = 2, days, years = 3;
4. A) b = a + 2;
B) a = b * 4;
C) b = a / 3.14;
D) a = b - 8;
E) a = 27;
F) c = 'K';
G) c = 66;
5. Multi-line comment
6. Single line comment
7. #include <iostream>
int main()
{
cout << "Two mandolins like creatures in the\n\n\n";
cout << "dark\n\n\n";
cout << "Creating the agony of ecstasy.\n\n\n";
cout << " - George Barker\n\n\n";
return 0;
}
8. A) 0
100
B) 8
2
C) I am the incrediblecomputing
machine
and I will
amaze
you.
D) Be careful
This might/n be a trick question
E) 23
1
9. C
10. C
11. B
12. A
13. B
14. A
15. B, C
16. B, C, D
17. A) 12 B) 4 C) 2 D) 6 E) 1
Starting Out with C++: From Control Structures through Objects, 8/e ©2015 Pearson Education
18. A) 3.287E6 B) -978.65E12 C) 7.65491E-3 D)-58710.23E-4
19. A
20. C
21. A
22. true
23. false
24. true
25. true
26. false
Starting Out with C++: From Control Structures through Objects, 8/e ©2015 Pearson Education
L E S S O N S E T
PROCEDURE 1. Students should read the Pre-lab Reading Assignment before coming to lab.
2. Students should complete the Pre-lab Writing Assignment before coming to lab.
3. In the lab, students should complete Labs 2.1 through 2.4 in sequence. Your
instructor will give further instructions as to grading and completion of the lab.
Approximate Check
completion Page when
Contents Prerequisites time number done
Pre-lab Reading Assignment 20 min. 14
Pre-lab Writing Assignment Pre-lab reading 10 min. 19
Lesson 2A
Lab 2.1
Working with the cout Pre-lab reading 20 min. 20
Statement
Lab 2.2
Working with Constants, Understanding of 30 min. 21
Variables, and Arithmetic variables and
Operators operators
continues
13
14 LESSON SET 2 Introduction to the C++ Programming Language
Lesson 2B
Lab 2.3
Rectangle Area and Perimeter Understanding of 30 min. 22
basic components
of a program
Lab 2.4
Working with Characters Completion of 30 min. 22
and Strings labs 2.1–2.3
#include <iostream>
using namespace std;
int main()
{
float radius;
radius = 4.0;
return 0;
}
Everything in bold (everything above the int main() statement) is considered the
header or global section. Everything else is the main section.
Pre-lab Reading Assignment 15
Recall from Lesson Set 1, that every program needs other modules attached so that
it may execute properly. Your instructor will generally tell you which libraries are
needed for each particular programming assignment; however, in time you will
learn this task for yourself.
Every C++ program has a main function which indicates the start of the
executable instructions. Every main must begin with a left brace { and end with
a right brace }. The statements inside those braces will be explained as we
progress through this lesson.
Memory
Memory storage is the collection of locations where instructions and data that are
used by the program are temporarily stored. Recall from Lesson Set 1 that a com-
puter only understands a sequence of 1s and 0s. These are binary digits or bits
(BInary digiTs). Eight of these brought together are called a byte, which is the
most common unit of storage. These chunks of memory can be thought of as hotel
mailboxes at the registration desk. The size of each of those boxes indicates the
type of mail that can be stored there. A very small mailbox can only hold notes
or postcards. Larger mailboxes can hold letters, while even larger ones can hold
packages. Each mailbox is identified by a number or name of an occupant. We
have identified two very important attributes of these mailboxes: the name or num-
ber, which indicates the mailbox that is being referenced, and the size, which indi-
cates what type of “data” can be placed there.
Example: postcards Jim is an indication that the mailbox called Jim can only hold
postcards, while the statement packages Mary indicates that the mailbox called
Mary can hold large packages. Memory locations in a computer are identified by
the same two attributes: data type and name.
Much of programming is getting data to and from memory locations and thus it
is imperative that the programmer tell the computer the name and data type of
each memory location that he or she intends to use. In the sample program the
statement float radius does just that. float is a data type that indicates what
kind of data can be stored and radius is the name for that particular memory
location.
16 LESSON SET 2 Introduction to the C++ Programming Language
Variables and Constants
The ability to change or not change the data stored can be a third attribute of
these memory locations. Components of memory in which data values stored can
change during the execution of the program are called variables. These usually
should not be defined in the header or global section of the program. In our sam-
ple program, radius is defined in the main function. Components of memory in
which data values stored are initialized once and never changed during the exe-
cution of the program are called constants. They are often defined in the global
section and are preceded (in C++) by the word const. PI, in the sample program,
is an example of a named constant.
Identifiers in C++
Identifiers are used to name variables, constants and many other components of
a program. They consist exclusively of letters, digits and the underscore _ char-
acter. They cannot begin with a digit and cannot duplicate reserved words used
in C++ such as int or if. All characters in C++ are case sensitive; thus memory
locations called simple, Simple, and SIMPLE are three distinct locations. It has
become standard practice among programmers to make constants all uppercase
and variables predominantly lowercase characters.
The statement const double PI = 3.14; in our sample program is
contained in the global section. It defines a memory location called PI to be a
constant holding a double (a data type discussed shortly) value equal to 3.14
which will not change during the execution of the program.
The statement float radius; in the sample program is contained in the
main section. It defines a variable memory location called radius that holds a
float- ing point data type (type discussed shortly) which can be changed during the
exe- cution of the program.
Both of these statements are called definitions. They reserve by name
enough memory to hold the data type specified.
Variables, like constants, can be given an initial value when they are defined,
but that value is not permanent and can be altered. For example:
int count = 7; // Defines a variable memory location called count that
// initially has the value of 7
count = count + 1; // count is now altered
Data Types
As noted earlier, computer memory is composed of locations identified by a data
type and a name (like the room number of a hotel mailbox). The data type indi-
cates what kind of data can be stored, thus setting the size of that location.
String Type: A variable defined to be character data can store only one charac-
ter in its memory location, which is not very useful for storing names. The string
class has become part of standard C++ and, although not a primitive type defined
by the language, it can be used as a type for storing several characters in a mem-
ory location. We must “include” the string library (#include <string>) in the pro-
gram header. The following statement defines a string initialized to “Daniel”:
string name = "Daniel"; Note that a string is enclosed in double (not single)
quotes. Thus the string "a" is not the same as the character 'a'.
Assignment Operator
The = symbol in C++ is called the assignment operator and is read “is assigned
the value of.” It assigns the variable on its left the value on its right. Although
this symbol looks like an equal sign, do not confuse it with equality. The left hand
side must always be a variable. For example, count = 8; is a legitimate statement
in C++, however 8 = count; generates a syntax error.
Fundamental Instructions
Most programming languages, including C++, consist of five fundamental instruc-
tions from which all code can be generated.
18 LESSON SET 2 Introduction to the C++ Programming Language
Example:
int count;
int total;
This last statement may seem a bit confusing. Starting with the right side, it
says to get the value that is in total (10 in this case), add it to the value
that is in count (7 in this case), and then store that combined sum (17) in
the memory location called total. Notice that total, which was initially
10, gets changed to 17.
2. Output Statements: These instructions send information from the computer
to the outside world. This information may be sent to the screen or to some
file. In C++ the cout << statement sends information to the screen. The
#include <iostream> directive must be in the header for cout to be used.
The above statement sends whatever value is stored in the variable total
to the screen. C++ uses the semicolon as a statement terminator.
We can output literal strings (such as “Hello”) by inclosing them in
double quotes.
The << operator acts as a separator for multiple outputs.
cout << "The value of total is " << total << endl;
The endl statement causes the cursor to be moved to the beginning of the
next line.
The remaining three fundamental instructions will be explained in
future labs.
Pre-lab Writing Assignment 19
Arithmetic Operators
Programming has the traditional arithmetic operators:
Operation C++ Symbol
addition +
subtraction -
multiplication *
division /
modulus %
Integer division occurs when both the numerator and denominator of a divide
operation are integers (or numbers stored in variables defined to be integers). The
result is always an integer because the decimal part is truncated or “chopped” from
the number. Thus 9/2 will give the answer 4 not 4.5! For this reason there are two
division operations for integer numbers. The modulus operator, (%) used only with
integers, gives the remainder of a division operation. 9/2 gives 4 while 9 % 2 gives
1 (the remainder of the division).
Example:
int count = 9;
int div = 2;
int remainder;
int quotient;
You should go back and review the sample program on the first page of the Pre-
lab Reading Assignment. By now you should understand most of the statements.
LESSON 2A
#include <iostream>
using namespace std;
int main()
{
return 0;
}
Lesson 2A 21
Exercise 2: Change the program so that three blank lines separate the tele-
phone number from the address. Compile and run the program.
Exercise 3: Change the program so that the following (but with your name and
address) is printed. Try to get the spacing just like the example. Compile
and run the program.
#include <iostream>
using namespace std;
int main()
{
area // definition of area of circle
// Fill in the code for the cout statement that will output (with description)
// the circumference
// Fill in the code for the cout statement that will output (with description)
// the area of the circle
return 0;
}
Other documents randomly have
different content
The Dean grew more earnest. Other pamphlets followed: for
instance, in 1775, “An Humble Address and Earnest Appeal, …
whether a Connection with or a Separation from the Continental
Colonies of America be most for the National Advantage and the
Lasting Benefit of these Kingdoms.” Here he says openly:—
“My scheme, which Mr. Burke, in his last speech, of
March 22, 1775, is pleased to term a childish one, is,
To separate totally from the Colonies, and to reject
them from being fellow-members and joint partakers
with us in the privileges and advantages of the British
Empire, because they refuse to submit to the authority
and jurisdiction of the British legislature,—offering at
the same time to enter into alliances of friendship and
treaties of commerce with them, as with any other
sovereign, independent state.”[453]
Then, insisting that his scheme “most infallibly cuts off all the
present causes of dispute and contention between the two
countries, so that they never can revive again,”[454] he establishes
that commercial intercourse with the Americans would not cease,
inasmuch as it cannot be shown that they “will no longer adhere to
their own interest when they shall be disunited from us.”[455]
Among subsequent tracts was one entitled “Cui Bono? or, An
Inquiry, What Benefits can arise either to the English or the
Americans, the French, Spaniards, or Dutch, from the Greatest
Victories or Successes in the Present War? Being a Series of Letters
addressed to Monsieur Necker, late Controller-General of the
Finances of France. London, 1782.” Here was the same ardor for
separation, with the same bitter words for the Colonies.
Tardily the foresight of the Dean was recognized, until at last
Archbishop Whately, in his annotations upon Bacon’s Essay on Honor
and Reputation, commemorates it as an historic example. According
to him, “the whole British nation were in one particular manifestly
puzzle-headed, except one man, who was accordingly derided by
all.” Then mentioning the dispute between the mother country and
her colonies, he says: “But Dean Tucker, standing quite alone, wrote
a pamphlet to show that the separation would be no loss at all, and
that we had best give them the independence they coveted at once
and in a friendly way. Some thought he was writing in jest; the rest
despised him, as too absurd to be worth answering. But now, and
for above half a century, every one admits that he was quite right,
and regrets that his view was not adopted.”[456] Unquestionably this
is a remarkable tribute. Kindred to it was that of the excellent
Professor Smyth, who, in exhibiting the “American War,” dwells on
“the superior and the memorable wisdom of Tucker.”[457]
The bad temper shooting from his writings interfered, doubtless,
with their acceptance. His spirit, so hostile to us, justified his own
characterization of himself as “the author of these tracts against the
rebel Americans.” As the war drew to a close, his bad temper still
prevailed, heightened by antipathy to republicanism, so that, after
picturing the Colonies, separated at last from the mother country, as
having “gained a general disappointment mixed with anger and
indignation,”[458] he thus predicts their terrible destiny:—
“As to the future grandeur of America, and its being
a rising empire under one head, whether republican or
monarchical, it is one of the idlest and most visionary
notions that ever was conceived, even by writers of
romance. For there is nothing in the genius of the
people, the situation of their country, or the nature of
their different climates, which tends to countenance
such a supposition.… Above all, when those immense
inland regions beyond the back settlements, which are
still unexplored, are taken into the account, they form
the highest probability that the Americans never can
be united into one compact empire, under any species
of government whatever. Their fate seems to be—a
disunited people till the end of time.”[459]
Alas! But evidently the Dean saw the future of our continent no
better than the Ministry saw their duty with regard to it.
Among the most brilliant in this extending list is the Abbé Galiani,
the Neapolitan, who was born 1728, and died at Naples 1787.
Although Italian by birth, yet by the accident of official residence he
became for a while domesticated in France, wrote the French
language, and now enjoys a French reputation. His writings in
French and his letters have the wit and ease of Voltaire.
Galiani was a genius. Whatever he touched shone at once with his
brightness, in which there was originality as well as knowledge. He
was a finished scholar, and very successful in lapidary verses. Early
in life, while in Italy, he wrote a grave essay on Money, which
contrasted with another of rare humor suggested by the death of
the public executioner. Other essays followed; and then came the
favor of the congenial pontiff, Benedict the Fourteenth. In 1760 he
found himself at Paris as Secretary of the Neapolitan Embassy.
Mingling with courtiers officially, according to the duties of his
position, he fraternized with the liberal and adventurous spirits who
exercised such influence over society and literature. He was
recognized as one of them, and inferior to none. His petty stature
was forgotten when he conversed with inexhaustible faculties of all
kinds, so that he seemed an Encyclopædia, Harlequin, and
Machiavelli all in one. The atheists at the Thursday dinner of
D’Holbach were confounded while he enforced the existence of God.
Into the questions of political economy occupying attention at the
time he entered with a pen which seemed borrowed from the French
Academy. His “Dialogues sur le Commerce des Blés” had the success
of a romance: ladies carried this book on Corn in their work-baskets.
Returning to Naples, he continued to live in Paris through his
correspondence, especially with Madame d’Épinay, the Baron
d’Holbach, Diderot, and Grimm.[489]
Among later works, after his return to Naples, was a solid volume
—not to be forgotten in the History of International Law—on the
Duties of Neutrals, where a difficult subject is treated with such
mastery, that, more than half a century later, D’Hautefeuille, in his
elaborate treatise, copies from it at length. Galiani was the
predecessor of this French writer in the extreme assertion of neutral
rights. Other works were left at his death in manuscript, some grave
and some humorous; also letters without number. The letters
preserved from Italian savans filled eight large volumes; those from
savans, ministers, and sovereigns abroad filled fourteen. His Parisian
correspondence did not see the light till 1818, although some of the
letters may be found in the contemporary correspondence of Grimm.
In his Parisian letters, which are addressed chiefly to that clever
individuality, Madame d’Épinay, the Neapolitan abbé shows not only
the brilliancy and nimbleness of his talent, but the universality of his
knowledge and the boldness of his speculations. Here are a few
words from a letter dated at Naples, 12th October, 1776, in which he
brings forward the idea of “races,” so important in our day, with an
illustration from Russia:—
“All depends upon races. The first, the most noble of
races, comes naturally from the North of Asia. The
Russians are the nearest to it, and this is the reason
why they have made more progress in fifty years than
can be got out of the Portuguese in five hundred.”[490]
Belonging to the Latin race, Galiani was entitled to speak thus
freely.
In another letter to Madame d’Épinay, dated at Naples, 18th May,
1776, he had already foretold the success of our Revolution. Few
prophets have been more explicit than he was in the following
passage:—
“Livy said of his age, which so strongly resembled
ours, ‘Ad hæc tempora ventum est, quibus nec vitia
nostra nec remedia pati possumus,’—‘We are in an age
when the remedies hurt at least as much as the
vices.’[491] Do you know how matters stand? The epoch
has come of the total downfall of Europe, and of
transmigration to America. Everything here is falling
into rottenness,—religion, laws, arts, sciences,—and
everything is going to be rebuilt anew in America. This
is no joke; nor is it an idea drawn from the English
quarrels; I have said, announced, preached it, for
more than twenty years, and I have always seen my
prophecies fulfilled. Do not buy your house, then, in
the Chaussée d’Antin; you must buy it in Philadelphia.
My trouble is, that there are no abbeys in America.”[492]
This letter was written some months before the Declaration of
Independence.
In another, dated at Naples, 7th February, 1778, the Abbé alludes
to the great numbers of English men and women who have come to
Naples “for shelter from the American tempests,” and adds,
“Meanwhile the Washingtons and Hancocks will be fatal to them.”[493]
In still another, dated at Naples, 25th July, 1778, he renews his
prophecies in language still more explicit:—
“You will at this time have decided the greatest
revolution of the globe,—namely, if it is America which
is to reign over Europe, or if it is Europe which is to
continue to reign over America. I would wager in favor
of America, for the reason, merely physical, that for
five thousand years genius has turned opposite to the
diurnal motion, and travelled from East to West.”[494]
Here again is the idea of Berkeley which has been so captivating.
A true and solid ally of our country at a critical period was Dr.
Price, dissenting clergyman, metaphysician, political writer, and
mathematician, who was born in Wales, 23d February, 1723, and
died in London, 19th April, 1791.
His earliest labors were “A Review of the Principal Questions and
Difficulties in Morals,” by which he was recognized as a
metaphysician, and “Observations on Reversionary Payments,” by
which he was recognized as an authority on a large class of financial
questions. At the same time his sermons were regarded as excellent.
Amidst these various labors he was moved to enlist as a
pamphleteer in defence of the American Colonies. This service,
prompted by a generous devotion to just principles, awakened
grateful sentiments on both sides of the ocean.
The Aldermen and Common Council of London marked their
sympathy by voting him the freedom of the city in a gold box of fifty
pounds value. The American Congress sent him a different
testimonial, officially communicated to him, being a solemn
resolution declaring “the desire of Congress to consider him a citizen
of the United States, and to receive his assistance in regulating their
finances.”[501] In reply, under date of 18th January, 1779, while
declining the invitation, he offered “assurances that Dr. Price feels
the warmest gratitude for the notice taken of him, and that he looks
to the American States as now the hope and likely soon to become
the refuge of mankind.”[502] Franklin and Adams contracted with him
relations of friendship. The former, under date of 6th February, 1780,
wrote him: “Your writings, after all the abuse you and they have met
with, begin to make serious impressions on those who at first
rejected the counsels you gave”;[503] and 24th October, 1788, he
wrote to another: “Remember me affectionately to good Dr.
Price.”[504] The latter, in correspondence many years afterwards,
recorded the intimacy he enjoyed with Dr. Price, “at his own house,
at my house, and at the houses and tables of many friends.”[505]
The first of his American tracts was in 1776, being “Observations
on the Nature of Civil Liberty, the Principles of Government, and the
Justice and Policy of the War with America.” The sale of sixty
thousand copies in a few months shows the extensive acceptance of
the work. The general principles so clearly exhibited are invoked for
America. Occasionally the philosopher becomes prophet, as when he
predicts the growth of population:—
“They are now but little short of half our number. To
this number they have grown, from a small body of
original settlers, by a very rapid increase. The
probability is that they will go on to increase, and that
in fifty or sixty years they will be double our number,
and form a mighty empire, consisting of a variety of
States, all equal or superior to ourselves in all the arts
and accomplishments which give dignity and happiness
to human life.”[506]
Nothing less than “a vast continent” seems to him the sphere of
this remarkable development, and he revolts at the idea of this being
held “at the discretion of a handful of people on the other side of the
Atlantic.”[507] In the measures which brought on the war he saw “the
hand of Providence working to bring about some great ends.”[508]
And the vast continent was to be dedicated to Liberty. The excellent
man saw even the end of Slavery. Speaking of “the negroes of the
Southern Colonies,” he said that they “probably will now either soon
become extinct or have their condition changed into that of
freemen.”[509] Years and battle intervened before this precious result.
This production was followed in 1777 by “Additional Observations
on the Nature and Value of Civil Liberty, and the War with
America,”—to which was added “Observations on Public Loans, the
National Debt, and the Debts and Resources of France.” In all this
variety of topics, his concern for America breaks forth in the inquiry,
“Must not humanity shudder at such a war?”[510] And he sees untold
loss to England, which, with the Colonies, “might be the greatest
and happiest nation that ever existed”; but without them “we are no
more a people; … our existence depends on keeping them.”[511] This
patriotic gloom is checked by another vision:—
“These measures have, in all probability, hastened
that disruption of the New from the Old World, which
will begin a new era in the annals of mankind, and
produce a revolution more important, perhaps, than
any that has happened in human affairs.”[512]
Thus was American Independence heralded, and its influence
foretold.
Constantly sympathizing with America, and impressed by the
magnitude of the issue, his soul found another utterance, in 1778, in
what he called “The General Introduction and Supplement to the
Two Tracts on Civil Liberty, the War with America, and the Finances
of the Kingdom.” Here again he sees a vision:—
“A great people, likely to be formed, in spite of all
our efforts, into free communities, under governments
which have no religious tests and establishments. A
new era in future annals, and a new opening in human
affairs, beginning, among the descendants of
Englishmen, in a new world. A rising empire, extended
over an immense continent, without bishops, without
nobles, and without kings.”[513]
After the recognition of Independence and the establishment of
peace, Dr. Price appeared with another tract: “Observations on the
Importance of the American Revolution and the Means of making it a
Benefit to the World.” This was in 1784. And here he repeated the
exultation of an earlier day:—
“With heartfelt satisfaction I see the revolution in
favor of universal liberty which has taken place in
America,—a revolution which opens a new prospect in
human affairs, and begins a new era in the history of
mankind.… Perhaps I do not go too far, when I say,
that, next to the introduction of Christianity among
mankind, the American Revolution may prove the most
important step in the progressive course of human
improvement.”[514]
Thus announcing the grandeur of the epoch, he states that it
“may produce a general diffusion of the principles of humanity,” and
may lead mankind to see and know “that all legitimate government
consists in the dominion of equal laws, made with common consent,”
which is another expression of the primal truth of the Declaration of
Independence. Then, referring to the “community or confederacy” of
States, he says, “I can almost imagine that it is not impossible but
that by such means universal peace may be produced, and all war
excluded from the world”; and he asks, “Why may we not hope to
see this begun in America?”[515] May America be true to this
aspiration! There is also a longing for Equality, and a warning against
Slavery, with the ejaculation, in harmony with earlier words, “Let the
United States continue forever what it is now their glory to be, a
confederation of States, prosperous and happy, without lords,
without bishops, and without kings.”[516] In the midst of the bloody
conflict this vision had appeared, and he had sought to make it a
reality.
His true friendship for our country and his devotion to humanity,
with the modesty of his nature, appear in a letter to Franklin, 12th
July, 1784, communicating a copy of the last production. After saying
that “it is intended entirely for America,” the excellent counsellor
proceeds:—
“I hope the United States will forgive my
presumption in supposing myself qualified to advise
them.… The consciousness which I have that it is well
intended, and that my address to them is the effusion
of a heart that wishes to serve the best interests of
society, helps to reconcile me to myself in this
instance, and it will, I hope, engage the candor of
others.”[517]
The same sentiments which proved his sympathies with our
country reappeared with fresh fires at the outbreak of the French
Revolution, arousing, in opposition, the immortal eloquence of
Burke. A discourse “On the Love of our Country,” preached at the
Old Jewry, 4th November, 1789, in commemoration of the English
Revolution, with friendly glances at what was then passing across
the Channel, prompted the “Reflections on the Revolution in France.”
The personal denunciation which is the beginning of that remarkable
performance is the perpetual witness to the position of the preacher,
whose prophetic soul did not hesitate to accept the French
Revolution side by side with ours in glory and in promise.
Among the best friends of our country abroad during the trials of
the Revolution was Thomas Pownall, called by one biographer “a
learned antiquary and politician,” and by another “an English
statesman and author.” Latterly he has so far dropped out of sight
that there are few who recognize in him either of these characters.
He was born 1722, and died at Bath 1805. During this long period
he held several offices. As early as 1745 he became secretary to the
Commissioners for Trade and Plantations. In 1753 he crossed the
ocean. In 1755, as Commissioner for Massachusetts Bay, he had a
share in the negotiations with New York, New Jersey, and
Pennsylvania, in union with New England, which resulted in the
confederated expedition against Crown Point. He was afterwards
Governor of Massachusetts Bay, New Jersey, and South Carolina,
successively. Returning to England, he was appointed, in 1762,
Comptroller-General of the army in Germany, with the military rank
of colonel. He sat in two successive Parliaments until 1780, when he
passed into private life. Hildreth gives a glimpse of his personal
character, when, admitting his frank manners and liberal politics, he
describes his habits as “rather freer than suited the New England
standard.”[518]
Pownall stands forth conspicuous for championship of our national
independence, and especially for foresight with regard to our
national future. In both these respects his writings are unique. Other
Englishmen were in favor of independence, and saw our future also;
but I doubt if any one can be named who was his equal in strenuous
action, or in minuteness of foresight. While the war was still
proceeding, as early as 1780, he openly announced, not only that
independence was inevitable, but that the new nation, “founded in
Nature and built up in truth,” would continually expand; that its
population would increase and multiply; that a civilizing activity
beyond what Europe could ever know would animate it; and that its
commercial and naval power would be found in every quarter of the
globe.[519] All this he set forth at length with argument and
illustration, and he called his prophetic words “the stating of the
simple fact, so little understood in the Old World.” Treated at first as
“unintelligible speculation” and as “unfashionable,” the truth he
announced was “neglected where it was not rejected, but in general
rejected as inadmissible,” and the author, according to his own
language, “was called by the wise men of the British Cabinet a Wild
Man, unfit to be employed.”[520] But these writings are a better title
now than any office. In manner they are diffuse and pedantic; but
they hardly deserve the cold judgment of John Adams, who in his
old age said of them that “a reader who has patience to search for
good sense in an uncouth and disgusting style will find in those
writings proofs of a thinking mind.”[521]
He seems to have written a good deal. But the works which will be
remembered the longest are not even mentioned by several of his
biographers. Rose, in his Biographical Dictionary, records works by
him, entitled “Antiquities of the Provincia Romana of Gaul”; “Roman
Antiquities dug up at Bath”; “Observations on the Currents in the
Atlantic Ocean”; “Intellectual Physics”; and contributions to the
“Archæologia”: nothing more. To this list Gorton, in his Biographical
Dictionary, adds briefly, “besides many political tracts,” but without
particular reference to the works on America. This is another
instance where the stone rejected by the builders becomes the head
of the corner.
At an early date Pownall comprehended the position of our
country, geographically. He saw the wonderful means of internal
communication supplied by its inland waters, and also the
opportunities of external commerce afforded by the Atlantic Ocean.
On the former he dwells, in a Memorial drawn up in 1756 for the
Duke of Cumberland.[522] Nobody in our own day, after the
experience of more than a century, has portrayed more vividly the
two vast aqueous masses,—one composed of the Great Lakes and
their dependencies, and the other of the Mississippi and its
tributaries. The Great Lakes are described as “a wilderness of
waters, spreading over the country by an infinite number and variety
of branchings, bays, straits, &c.”[523] The Mississippi, with its eastern
branch, called the Ohio, is described as having, “as far as we know,
but two falls,—one at a place called by the French St. Antoine, high
up on the west or main branch”; and all its waters “run to the ocean
with a still, easy, and gentle current.”[524] The picture is completed by
exhibiting the two masses in combination:—
“The waters of each respective mass—not only the
lesser streams, but the main general body of each
going through this continent in every course and
direction—have, by their approach to each other, by
their interlacing with each other, by their
communication to every quarter and in every direction,
an alliance and unity, and form one mass, a one
whole.”[525]
And he remarks, that it is thus seen