-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updating all assignments #4
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please address all of the comments.
invent-code-0/main.cpp
Outdated
@@ -4,4 +4,11 @@ using namespace std; | |||
|
|||
int main() { | |||
// Write code here. | |||
cout << endl; | |||
cout << "I graduated from TAMS in 2004." << endl; | |||
cout << endl; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it looks like you're duplicating your endl here. you have two new lines per one line of code. Can you remove one of the endls? here and below too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.
invent-code-1/main.cpp
Outdated
@@ -4,4 +4,5 @@ using namespace std; | |||
|
|||
int main() { | |||
// Write code here. | |||
cout << "Texas A&M is better than UT. " << "Taxation is theft. " << "Epstein didn't kill himself." << endl; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you make this multiple lines? this is a bit long.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks great! Nice job.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding new comments.
No description provided.