负责荷花

文章
5
资源
0
加入时间
3年0月20天

Win10 取消百度输入法 Shift+Space 全角半角切换

问题描述在百度输入法中,按下shift+空格,会自动进行全角与半角切换,这会导致在敲代码时 写着写着就出现以下情况:#include <iostream>using namespace std;int main(){ int cnt = 0; cout << "hello world" << endl; cout << "cnt = "...

openssl配置文件

root@DESKTOP-JP3S3AN:/home/wsl# cat /usr/lib/ssl/openssl.cnf## OpenSSL example configuration file.# This is mostly being used for generation of certificate requests.## Note that you can include other files from the main configuration# file using th.

2021.1.28寒假打卡Day21

求n个数的最小公倍数#include<iostream>using namespace std;int gcd(int a,int b){ int r=a%b; if(r==0) return b; else return gcd(b,r);}int nlcm(int a[],int b){ while(b!=1){ a[b-2]=a[b-1]*a[b-2]/gcd(a[b-1],a[b-2]); --b; }