摘要: ubuntu配置SSH登录xsheel 环境 Ubuntu-22.04.2-desktop-amd64 Ubuntu 安装后自带 SSH客户端,但是要想使用 xsheel 连接 Ubuntu 需要在 Ubuntu 中下载SSH-Server。 步骤 安装 openssh-server sudo ap 阅读全文
posted @ 2023-10-28 17:56 tlocd 阅读(103) 评论(0) 推荐(0) 编辑
摘要: # Add bricks in the wall ``` C++ #include #include using namespace std; int main() { int n = 0; // 测试用例数量 int t = 9; // 行数 cin >> n; while (n--) { int 阅读全文
posted @ 2023-08-24 16:27 tlocd 阅读(12) 评论(0) 推荐(0) 编辑
摘要: # Is This Integration ``` C++ #include #include #define pi 3.141592653589793 using namespace std; int main(){ double a; while(cin >> a){ double x, y, 阅读全文
posted @ 2023-08-23 23:24 tlocd 阅读(8) 评论(0) 推荐(0) 编辑
摘要: # Satellites ``` C++ #include #include using namespace std; int main() { const double pi = 3.14159265358979323846; const double earthR = 6440; double 阅读全文
posted @ 2023-08-23 21:17 tlocd 阅读(7) 评论(0) 推荐(0) 编辑
摘要: # Fourth Point !! ``` c++ #include using namespace std; class point { public: double x; double y; bool equals(const point &p) { if (p.x == x && p.y == 阅读全文
posted @ 2023-08-23 21:13 tlocd 阅读(10) 评论(0) 推荐(0) 编辑
摘要: # 通过 NVM 安装、管理Node.js 版本(Windows) ## 介绍 NVM 可以让我们通过指令安装指定版本,并且可以切换当前Node.js 版本,不用花时间在解决升版和降版。 ## 安装 链接: https://github.com/coreybutler/nvm-windows 选择最 阅读全文
posted @ 2023-08-21 14:04 tlocd 阅读(97) 评论(0) 推荐(0) 编辑