- 博客(3)
- 收藏
- 关注
原创 TypeError: unsupported operand type(s) for -=: ‘Retry‘ and ‘int‘[TOC]
pip安装module文件时报错TypeError: unsupported operand type(s) for -=: ‘Retry’ and ‘int’解决办法,重新安装pipsudo apt-get reinstall python-pip
2020-08-05 12:34:40
258
原创 c语言写leetcode的常见坑
错误关键词1:runtime error: member access within misaligned address 0xbebebebebebebebe常见原因:这一般是要访问某个变量,但是没有malloc,或者是你malloc的变量没有赋值的指针没有设置为NULL;不用的指针一定要设置为NULL!!!错误关键词2:常见原因:如果提示是heap-buffer-o...
2019-10-31 09:48:07
5066
原创 输入年份和月份,求该月有多少天
直接上代码#include<stdio.h>int main(){ int year,mounth,days; int mounthData[]={31,28,31,30,31,30,31,31,30,31,30,31}; printf("input year,mounth\n"); scanf("%d,%d",&year,&mounth); ...
2018-04-30 15:45:32
13741
2
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人