上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 120 下一页
摘要: python中的print函数有个end参数特别有用: 1 for i in range(1, 10): 2 for j in range(1, i + 1): 3 print(f'{j} * {i} = { i * j}') 4 print() 结果: 1 1 * 1 = 1 2 3 1 * 2 阅读全文
posted @ 2023-01-02 21:48 叕叒双又 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 如题: https://en.cppreference.com https://www.cplusplus.comhttps://www.tutorialspoint.com/cplusplushttps://www.learncpp.comhttps://github.com/fffaraz/aw 阅读全文
posted @ 2022-12-31 11:03 叕叒双又 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 如果说道C语言中的标识符,估计很多人就是:标识符是数字、下划线、小写及大写拉丁字母。但是也可以以 \u 及 \U 转义记号指定的 Unicode 字符 (C99 起)的任意长度序列。合法的标识符必须以非数字字符(拉丁字母、下划线或 Unicode 非数字字符 (C99 起))开始。标识符大小写有别( 阅读全文
posted @ 2022-12-31 10:28 叕叒双又 阅读(679) 评论(0) 推荐(0) 编辑
摘要: C语言中使用数学函数,例如:exp等 1、包含头文件 #include <math.h> 2、编辑源码testExp.c,例如: #include<stdio.h> #include<math.h> int main() { double m = 4; //为变量赋初值 double n = exp 阅读全文
posted @ 2022-12-27 10:53 叕叒双又 阅读(423) 评论(0) 推荐(0) 编辑
摘要: 如果你在linux下下载比较大的文件,网速也不太稳定是,用单线程下载就远远不如用多线程工具下载了。Manjaro中可以使用axel 1、安装axel sudo pacman -S axel 2、语法 axel [options] url1 [url2] [url…] 其中的选项主要包括 –max-s 阅读全文
posted @ 2022-12-26 21:54 叕叒双又 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 在安装goldendict-git 时,刚开始,非常顺利 yay -S goldendict-git :: 正在检查冲突...:: 正在检查内部冲突...[Aur:1] goldendict-git-1:1.5.0rc2.r521.g99982a1c-2[Aur Make:2] libeb-4.4. 阅读全文
posted @ 2022-12-25 21:21 叕叒双又 阅读(959) 评论(0) 推荐(0) 编辑
摘要: 1、终端下输入:sudo pacman-mirrors -i -c China -m rank 2、选择最快的,我在江西,中科大和清华的源都比较快,一个快的就够了,第二个是备份,不需要所有的都选择的。 阅读全文
posted @ 2022-12-25 09:51 叕叒双又 阅读(640) 评论(0) 推荐(0) 编辑
摘要: 1、下载软件: https://www.jetbrains.com/clion/download/other.html,下载https://download.jetbrains.com/cpp/CLion-2022.2.4.tar.gz,我的是linux系统,如果windows就下对应版本 2、到以 阅读全文
posted @ 2022-12-20 08:46 叕叒双又 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 问题表现:通过matlab设置的内容,重启后还是老样子,没有任何改变,主要是权限问题 以下均假设:matlab的安装目录:/opt/Polyspace/MR2022b/,以下用$MATLABHOME 1、pathdef.m文件的权限问题会导致设置路径不能保存,解决方法: 切换到cd $MATLABH 阅读全文
posted @ 2022-12-18 09:31 叕叒双又 阅读(410) 评论(0) 推荐(0) 编辑
摘要: 详细见:https://zhuanlan.zhihu.com/p/447994364 也就是: 1.快捷键设置,matlab默认的快捷键模式emacs的,改成windows即可: 还是系统的原因,默认设置下的复制粘贴不是常见的ctrl+c/v或者command+c/v,因此需要更改快捷键设置。 主页 阅读全文
posted @ 2022-12-18 09:24 叕叒双又 阅读(394) 评论(0) 推荐(0) 编辑
摘要: 在命令行启动matlab时,出现Fontconfig warning: "/usr/share/fontconfig/conf.avail/05-reset-dirs-sample.conf", line 6: unknown element "reset-dirs",解决办法为: 1、备份文件 切 阅读全文
posted @ 2022-12-18 08:19 叕叒双又 阅读(792) 评论(0) 推荐(0) 编辑
摘要: 1、提示错误如下: matlab.internal.cef.webwindow MATLABWindow 应用程序未能启动。Unable to launch the MATLABWindow application. The exit code was: 1 2、还是老办法,到$MATLABHOME 阅读全文
posted @ 2022-12-17 21:08 叕叒双又 阅读(1314) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/yujiak/article/details/8958628 http://t.zoukankan.com/jmliao-p-5628521.html 阅读全文
posted @ 2022-12-17 07:27 叕叒双又 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 1、启动matlab时,提示libva error: /usr/lib/dri/i965_drv_video.so init failed 2、使用avinfo,提示 The application vainfo is not installed. It may be found in the fo 阅读全文
posted @ 2022-12-16 15:47 叕叒双又 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 1、中州韵输入法更加适合国人使用,但是由于是台湾人开发的,默认是繁体中文,快捷键也比较隐晦,一不小心就成了繁体中文输入法,不是很方便 2、切换方式就是,在输入过程中按下F4按键,选择方法,简体直接按下数字3按键即可。 3、希望下一步可以将不需要的繁体输入删除就好了。 阅读全文
posted @ 2022-12-16 09:49 叕叒双又 阅读(470) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 120 下一页