-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject 3.cpp
More file actions
20 lines (17 loc) · 1.02 KB
/
project 3.cpp
File metadata and controls
20 lines (17 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//stream...iostream
//STD...std
//cout << "work smart not hard\n"; this should be written at main function
//maIN...main
// the code after correcting errors will be
#include <iostream>
using namespace std;
int main() {
cout << "work smart not hard\n";
cout << "Children must be taught how to think, not what to think\n";//except semi colon
cout << "We worry about what a child will become " << "tomorrow"<< "yet we forget that he is someone today\n"; //printing was not correct
cout << "Children are not things to be molded" << ", but are people to be unfolded\n"; //printing was not correct
cout << "Each day of our lives we make deposits in the memory banks of our children." << endl; //endl not end
cout << "It is easier to build strong children than to repair broken men" << "\n";
cout << "Children need models rather than critics\n";
cout << "Children have never been very good at listening to their elders, but they have never failed to imitate them";
cout << "Children are our most valuable resource\n";