-
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
Updated all assignments #2
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.
} | ||
|
||
publish_all |
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.
What does the publish_all here do in this code?
@@ -3,5 +3,6 @@ | |||
using namespace std; | |||
|
|||
int main() { |
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.
Things are looking good!
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.
@@ -3,5 +3,8 @@ | |||
using namespace std; | |||
|
|||
int main() { | |||
cout<<"Hello "; cout <<"World!"; cout << endl; | |||
cout << "I love hot cheetos. My favorite animal is dogs. I'm excited to learn about coding!"; | |||
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.
line 6 & 7 can be merged to 1 line!
@@ -3,5 +3,6 @@ | |||
using namespace std; | |||
|
|||
int main() { | |||
cout << Hello; | |||
cout << "Hello."; | |||
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.
line 6 & 7 can be merged to 1 line!
@@ -3,5 +3,6 @@ | |||
using namespace std; | |||
|
|||
int main() { | |||
cout << "Hello" | |||
cout << "Hello."; | |||
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.
line 6 & 7 can be merged to 1 line!
@@ -3,5 +3,6 @@ | |||
using namespace std; | |||
|
|||
int main() { | |||
cout >> "Hello"; | |||
cout << "Hello"; | |||
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.
line 6 & 7 can be merged to 1 line!
@@ -3,5 +3,6 @@ | |||
using namespace std; | |||
|
|||
int main() { | |||
cout << "My GitHub username is [fill in your username here]!"; | |||
cout << "My GitHub username is vivianpppp!"; | |||
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.
line 6 & 7 can be merged to 1 line!
@@ -3,5 +3,10 @@ | |||
using namespace std; | |||
|
|||
int main() { | |||
// Write code here. | |||
cout << "I love hot cheetos."; | |||
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.
line 6 & 7 can be merged to 1 line!
@@ -3,5 +3,6 @@ | |||
using namespace std; | |||
|
|||
int main() { | |||
// Write code here. | |||
cout << "I love hot cheetos. My favorite animal is dogs. I'm excited to learn about coding!"; | |||
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.
line 6 & 7 can be merged to 1 line!
No description provided.