自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 一个特大数运算的程序:1+2+4+8+……+2^100=?

#include stdio.h>int per[500];int total;void n_num(int number){    int i,j,temp,flag;    per[0] = 1;    total = 1;    for (i=1,flag=0;inumber;i++)    {        for (j=0,temp=0;j

2010-10-13 22:38:00 1040

原创 一个特大数运算的程序:1+2+4+8+……+2^100=?

#include stdio.h>int per[500];int total;void n_num(int number){    int i,j,temp,flag;    per[0] = 1;    total = 1;    for (i=1,flag=0;inumber;i++)    {        for (j=0,temp=0;j

2010-10-13 22:28:00 2107

原创 数组和指针

1、int a[3] = {2,5,8};int* p = a;把数组名赋值给指针表示将数组的首元素的地址赋予此指针。2、int a[3] = {2,5,8};int* p = &a[0];a[0]是a数组的首元素,而&则是取地址运算符,所以“ &a[0]”取得的同样是a数组的首元素的地址,因此这段代码的含义和代码段是一致的。3、char * c1 = "Hel

2010-10-12 21:23:00 600

原创 临时

include#include#include"public.h"#include#includevoid main(){ int a, i,n=0; char ch=y; LinkStack S; LinkQueue L; InitQueue(L); InitStack(S); while(ch==y) {  printf("请

2010-10-12 11:49:00 306

空空如也

空空如也

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

TA关注的人

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