相关文章
第五节 C++ 循环结构(算法)
文章目录 前言介绍1. for 语句1.1 语法结构1.2 语法流程的执行过程1.2.1 案例 1:循环的正序输入和倒序输入1.2.2 案例2 : 求1~n的平方数1.2.3 案例 3: 求输入a和b,求a~b区间数. 1.3 for 循环案例练习1.3.1 求最大值与最小值1.3.2 计算奇数和和偶数和1.3.3 计算平均气温与最高气…
建站知识
2024/12/23 17:30:02
Linux系统管理:虚拟机Centos Stream 9安装
目录
一、理论
1.Centos Stream 9
二、实验
1.虚拟机Centos Stream 9安装准备阶段
2.安装Centos Stream 9
3.进入系统 一、理论
1.Centos Stream 9
(1) 简介
CentOS Stream 是一种 Linux 操作系统。安装此操作系统的难题在于,在安装此系统之前,…
建站知识
2024/11/28 23:38:43
yum apt pip 阿里云源
centos yum 阿里云源
# 备份
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup# centos 6
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-6.10.repo
curl -o /etc/yum.repos.d/CentOS-Base.repo h…
建站知识
2024/12/23 16:53:01
面试经典150题——Day7
文章目录 一、题目二、题解 一、题目
121. Best Time to Buy and Sell Stock
You are given an array prices where prices[i] is the price of a given stock on the ith day.
You want to maximize your profit by choosing a single day to buy one stock and choosing a…
建站知识
2024/12/23 17:57:00
Mac上brew切换国内源【极简方案】
前言
下载一些开源包如telnet时,通过brew下载经常由于网络不通,导致下载失败。所以mac用户最好一次性设置brew为国内源。
方案
极简四步,换Homebrew的镜像源为阿里云镜像,依次在终端执行以下几步:
1、cd “$(brew …
建站知识
2024/11/28 23:49:33
LeetCode75——Day2
文章目录 一、题目二、题解 一、题目
1071. Greatest Common Divisor of Strings
For two strings s and t, we say “t divides s” if and only if s t … t (i.e., t is concatenated with itself one or more times).
Given two strings str1 and str2, return the l…
建站知识
2024/12/17 22:15:14
若依前端-应用路径发布和使用
官网的路径:前端手册 | RuoYi
应用路径
有些特殊情况需要部署到子路径下,例如:https://www.ruoyi.vip/admin,可以按照下面流程修改。
1、修改vue.config.js中的publicPath属性
publicPath: process.env.NODE_ENV "produ…
建站知识
2024/12/16 2:18:09