- 博客(7)
- 收藏
- 关注
原创 IDEA 插件市场无法打开
IDEA 插件市场无法打开 hosts文件在 C:\Windows\System32\drivers\etc\hosts
2022-03-30 18:03:20
825
原创 修改 jupyter notebook的默认文件夹位置
1. 首先要找到配置文件位置 打开Anaconda Prompt,输入命令:jupyter notebook --generate-config 然后执行。 2. 打开上一步生成的配置文件 C:\Users\Administrator\.jupyter\jupyter_notebook_config.py 实际上,C:\Users\Administrator就是Jupyter notebook的默认路径 3. 在jupyter_notebook_
2020-12-06 09:39:04
200
原创 pymysql连接服务器数据库超时
pymysql连接服务器数据库超时问题 pymysql连接服务器数据库超时报错: pymysql.err.OperationalError: (2003, “Can’t connect to MySQL server on ‘…’ (timed out)”) 确保3306端口打开,没有其余问题 解决方法:原因是服务器防火墙开启, systemctl status firewalld.service 查看防火墙状态 (active(running))显示防火墙处于激活状态 systemctl status f
2020-10-19 18:21:24
2521
原创 C语言利用链表简单实现学生成绩管理系统
初学链表,加深自己对链表的认识与理解 #include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct student { long num; char name[10]; int C; int English; int Math; int sum; struct stud...
2019-03-03 23:02:40
4847
2
原创 兔崽子问题(斐波那契数列)
#include<stdio.h> void main() { int rabbit[12],i,a; for(i=0;i<12;i++) { if(i<=2) rabbit[i]=i+1; else rabbit[i]=rabbit[i-2]+rabbit[i-1]; } a=rabbit[11]; printf("一年后有%d只\n",a); } ...
2018-11-20 09:29:24
151
原创 C语言程序设计第八章8.1(3)
** 利用矩阵相乘公式编程计算mn阶矩阵A和nm阶矩阵B之积 ** #include<stdio.h> #define ROW 2 #define COL 3 /*函数功能:计算矩阵相乘之积,结果存于二维数组c中*/ void MultiplyMatrix(int a[ROW][COL],int b[COL][ROW],int c[ROW][ROW]) { int i,j,k; f...
2018-11-11 09:36:54
2894
原创 C语言程序设计第八章8.3
#include<stdio.h> void DivArray(int *pArray, int n); int main() { int a[] = {2,4,6,8,10,12,14},i; DivArray(a, 7); for (i = 0; i < 7; i++) //问题 { printf("%d ",a[i]); } return 0; } void...
2018-11-10 22:02:58
1238
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人