上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 76 下一页
摘要: #include <iostream> #include <cppconn/driver.h> #include <cppconn/resultset.h> #include <cppconn/statement.h> #include <cppconn/exception.h> #include 阅读全文
posted @ 2022-05-14 22:46 FredGrit 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 1.Install C++ connector sudo apt install libmysqlcppconn-dev 2. #include <iostream> #include <cppconn/driver.h> #include <cppconn/resultset.h> #includ 阅读全文
posted @ 2022-05-14 02:19 FredGrit 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 1.Check status sudo systemctl mysql status; 2.If not started mysql service sudo service mysql start; sudo service mysql status; 3.Then log in mysql vi 阅读全文
posted @ 2022-05-14 02:13 FredGrit 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 1, sudo apt update 2. sudo apt upgrade 3. sudo apt install mysql-server 4.Check version mysql --version 5. sudo mysql_secure_installation And failed,i 阅读全文
posted @ 2022-05-14 01:37 FredGrit 阅读(149) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <functional> int callFunction55(int x, int y, function<int(int, int)> func); void invokeCall56(int x, int y); int sum57(i 阅读全文
posted @ 2022-05-14 00:01 FredGrit 阅读(20) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <functional> using namespace std; int sum41(int x,int y); int multiply42(int x,int y); int passFuncAddress43(int x,int y, 阅读全文
posted @ 2022-05-13 19:50 FredGrit 阅读(15) 评论(0) 推荐(0) 编辑
摘要: //Util.h #ifndef Util_H #define Util_H #include <chrono> #include <ctime> #include <fstream> #include <functional> #include <iostream> #include <threa 阅读全文
posted @ 2022-04-24 22:35 FredGrit 阅读(32) 评论(0) 推荐(0) 编辑
摘要: //Util.h static unsigned long long factorialLoops; long double Fibonacci35(int len); //Util.cpp unsigned long long Util::factorialLoops=0; long double 阅读全文
posted @ 2022-04-19 23:46 FredGrit 阅读(13) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <limits.h> void Util::showMax(){ cout<<fixed<<"INT32_MAX="<<INT32_MAX<<endl; cout<<fixed<<"UINT32_MAX="<<UINT32_MAX<<endl 阅读全文
posted @ 2022-04-19 22:39 FredGrit 阅读(49) 评论(0) 推荐(0) 编辑
摘要: The common or classic Fibonacci algorithm //Util.h static unsigned long long factorialLoops; long double Fibonacci35(int len); //Util.cpp unsigned lon 阅读全文
posted @ 2022-04-19 22:01 FredGrit 阅读(22) 评论(0) 推荐(0) 编辑
上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 76 下一页