CPP
cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* Date: 08February 2020
Created by: Buhle Mdlongwa
All rights reserved. Please upvote this code!!
*/
//This is a single line comment//
/* The code below is just to share some advice to all coders out ther newbies or pros and any additions would be appreciated so im looking forward to your comments!!!*/
#include <iostream>
#include <string>
using namespace std;
int main()
{
cout <<"hello world!"<<endl;
cout <<"This is some advice i would like to share with you guys!"<<endl;
cout<<"* * * * * * * * * * * * * * * * * *"<<endl<<endl<<endl;
cout <<"1. "<<"Never copy and paste!"<<endl;
cout <<"2. Practice make perfect."<<endl;
cout <<"3. Learn to walk before you run"<<endl;
cout <<"4. Start slow and never stop learning" <<endl;
cout <<"5. Dont be egoistic about your code" <<endl;
cout <<"6. Make mistakes after all we learn from our mistakes "<<endl;
cout <<"7. Never stop learning!"<<endl;
cout <<"8. Dont quit!"<<endl;
cout <<"9. Change is the only constant so accept it and embrace it"<<endl;
cout <<"10 slow progress is still progress !"<<endl;
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run