#include <iostream>
#include<ctime>
#include <cstdio>
using namespace std;
int main()
{
/*~自我介紹~*/
struct myInfo {
char gender;
int age;
string information;
myInfo(char _gender, int _age, string _information):
gender(_gender),age(_age),information(_information){}
};
myInfo null_jub = myInfo('M', 19, "雙非本科軟體工程大一萌新,對編程具有強烈興趣,默默奮斗ing");
cout << "有志者,事竟成" << endl;
cout << "一分耕耘,一分識訓" << endl;
cout << "唯有實力過硬,唯有能力夠強" << endl;
/*~編程目標及實作方式~*/
int EOL, work_hard = 0; //EOL~End of Life
int now = 19;
srand((unsigned int)time(NULL));
EOL = rand() % 100 + 20;
for (int i = now; i <= EOL; i++)
{
work_hard++;
}
printf("你還可以奮斗%d年\n", work_hard);
- //學習前沿知識,掌握編程專業技能,終身學習;
- //掌握C++、Java、Go等編程語言,并至少精通一門語言
- //學習資料結構與演算法、計算機網路、作業系統、Linux系統編程的專業知識
- //挑戰編程競賽,參加學校acm集訓隊,深入學習演算法
- //閱讀專業經典書籍,如《C++ primer》《演算法》《C與指標》《CSAPP》等書籍
- //在各大oj平臺刷題訓練,總結反思,提高演算法能力
- //利用各平臺網路資源,csdn、b站等學習平臺學習相關課程
/*如何付諸行動*/
cout << "gitee堅持每日打卡 " << "null_jub (null_jub) - Gitee.com" << endl;
cout << "每天除學習知識外,至少拿出兩個小時來撰寫自己的代碼" << endl;
cout<< "在學習新的知識點后及時總結,并思考是否能用于先前代碼的優化" << endl;
cout << "堅持背單詞,后期嘗試閱讀英文文獻,學習國外相關教學資源" << endl;
/*最想進入的公司*/
cout << "位元組跳動,騰訊,網易,阿里等互聯網大廠" << endl;
return 0;
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~與諸君共勉~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
EOF
轉載請註明出處,本文鏈接:https://www.uj5u.com/ruanti/319866.html
標籤:其他
上一篇:開始卷,一刻也不能停!
