- 博客(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关注的人