自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(13)
  • 收藏
  • 关注

原创 postman软件使用教程

一、软件下载翻墙去goole应用商店免费下载安装postman插件即可。二、软件应用(1)get方式获取数据并且用Test脚本获取符合特定条件的HTMLhttps://www.baidu.com/s?wd=22222&rsv_spt=1&issp=1&f=8&rsv_bp=0&rsv_idx=2&ie=utf-8&tn=baiduhome_pg&rsv_enter=1&rsv_su

2017-01-13 15:27:29 944

原创 模板

【注意数据范围】大数用__int64 a;(横线是两行)printf(“%I64d”,a);【memset函数】头文件#include给数组快速赋值,值一般是0,-1格式:int a[N];memset(a,0,sizeof(a));将数组a中所有元素赋为0.(二维数组也可以) 【素数筛选法】#define N 10000000int f[N+1

2017-01-13 15:04:19 236

原创 大整数类应用小结

hdoj已做题目 1042 1042 1047解题思路:通过定义字符串来完成大整数类的加减乘除,直接输出字符串来完成输出结果。 将输入的字符串转化为数字进行运算然后再输出到字符串注意字符串的翻转以及较短的字符串优先结束运算然后对较长的单独运算 进位注意源代码:# include # include using namesp

2017-01-13 15:03:27 265

原创 大整数类的应用 bjfu1005

写了一上午,,,哦哦哦!http://acm.bjfu.edu.cn/acmhome/problemdetail.do?&method=showdetail&id=1005通过字符串进行N的阶乘的运算,从0位置开始,若有进位,将答案长度加上1。并且对后面的按照进位进行赋值。# include # include # include char a[10

2017-01-13 15:02:38 260

原创 hdoj练习题 异或的应用

Problem DescriptionIn the new year party, everybody will get a "special present".Now it's your turn to get your special present, a lot of presents now putting on the desk, and only one of them will

2017-01-13 15:02:11 301

原创 hdoj 练习题1.2.2 字符串反转

Problem DescriptionIgnatius likes to write words in reverse way. Given a single line of text which is written by Ignatius, you should reverse all the words and then output them.InputThe input co

2017-01-13 15:01:50 302

原创 HDOJ 练习题 memset 和malloc 函数的用法

memset 快速赋值malloc 分配内存空间代码举例:# include # include # include int main (){ int n; while (scanf("%d",&n)!=EOF) {  int *a;  a=(int *)malloc(n*sizeof(int));  memset(a,0

2017-01-13 15:01:22 248

原创 gets()函数的应用

gets():作用为录入字符串,与scanf("%s")不同的是它是以换行符为记号区分字符串是否录入结束的,而scanf是以换行和空格区分字符串是否录入结束的。

2017-01-13 15:00:54 417

原创 C语言不同进制的定义、输入、输出

# include int main (){    __int64 p;//64位数的定义    scanf("%I64d",&p);//64位数的输入    printf("%I64d",p);    int n=0x00,m=0x0,sum=0x0;//十六进制数的定义,通过在定义前加上0x00进行定义    int a=00,b=00;           //八

2017-01-13 15:00:27 457

原创 bjfu oj 1011 将浮点数转换为分数相除的形式

http://acm.bjfu.edu.cn/acmhome/problemdetail.do?&method=showdetail&id=1011被编译器坑的我眼泪流下来,,VC6.0为毛不支持long long !!!!!!!!!!!!!!!!!!!!!!该重装系统换成visual studio了解题思路:输入分成两种情况进行运算

2017-01-13 15:00:01 313

原创 bjfu 1008

http://acm.bjfu.edu.cn/acmhome/problemdetail.do?&method=showdetail&id=1008这是个坑,,开始自己想的有问题,sum应该是换为64位的存储,作用应该是防止输入的数过多超出32位的范围,开始的时候疏忽了。。。。。# include int main (){    __int64

2017-01-13 14:59:35 291

原创 16进制数的定义以及输入输出

HDOJ练习题16进制数的定义以及输入输出!!!!!!!!!!!!!!!!!!!!! # include int main (){ int a=0x00,b=0x00; while (scanf("%x %x",&a,&b)!=EOF) {  printf("%d\n",a+b); } return 0;}

2017-01-13 14:58:58 4200

原创 java 实现读写txt文件中的指定一个数字

fileinoutstream 和fileoutputstream 只能实现顺序读写文件,如果我想读写特定的一行,就会非常不方便。使用随机访问类可以达到目的。 随机访问类(RandomAccessFile) RandomAccessFile对象的文件位置指针遵循下面的规律:·新建RandomAccessFile对象的文件位置指针位于文件的开头处;·每次读写操作之后,文件

2017-01-02 13:11:36 2025

centos libodbc.so

centos下正确的 libodbc.so

2023-11-09

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除