上一页 1 ··· 8 9 10 11 12
摘要: ```#include #include int main(){ int *p,t; p = (int *)malloc(40*sizeof(int)); if (!p){ printf("内存已用完!j"); exit(0); } for ... 阅读全文
posted @ 2015-07-02 19:33 樱风凛 阅读(159) 评论(0) 推荐(0) 编辑
摘要: ```#include int main(){ int a,b,c=1,d=1; a = c++; b = ++d; printf("%d\t%d\n", a,b); return 0;}//++i是先加再使用,而i++是先使用再加//输出结果 1 2``` 阅读全文
posted @ 2015-07-02 19:00 樱风凛 阅读(215) 评论(0) 推荐(0) 编辑
摘要: ```#include int main(){ //printf("please input the value a:\n"); fprintf(stdout, "please input the value a:\n"); int a; //scanf("%d",&a); fscanf(stdin... 阅读全文
posted @ 2015-06-29 22:40 樱风凛 阅读(207) 评论(0) 推荐(0) 编辑
摘要: ```c#include int main(int argc, char const *argv[]){ int i; for ( i = 0; i < argc; i++) { printf("argv[%d] is %s\n", i,argv[i]); } return 0;}// int a... 阅读全文
posted @ 2015-06-29 22:17 樱风凛 阅读(190) 评论(0) 推荐(0) 编辑
摘要: ##题目一个人写了n封不同的信及相应的n个不同的信封,他把这n封信都装错了信封,问都装错信封的装法有多少种?###解体思路用A、B、C……表示写着n位友人名字的信封,a、b、c……表示n份相应的写好的信纸。把错装的总数为记作f(n)。假设把a错装进B里了(意味着b不能装入B了),包含着这个错误的一切... 阅读全文
posted @ 2015-06-20 00:58 樱风凛 阅读(601) 评论(1) 推荐(0) 编辑
摘要: 静态变量(static):有局部变量,也有全局变量。静态局部变量:在函数体内用static说明的变量称为静态局部变量,属于静态类别。特点: (1)它占据一个永久性的存储单元。随着文件的存在而存在。(2)静态局部变量是在编译时赋初值,在程序执行期间,一旦存储单元中 的值改变,就不会再执... 阅读全文
posted @ 2015-05-13 00:39 樱风凛 阅读(11259) 评论(0) 推荐(0) 编辑
摘要: 有一楼梯共M级,刚开始时你在第一级,若每次只能跨上一级或二级,要走上第M级,共有多少种走法?一个可以运行的程序,解释在后边: #include "stdio.h" int f(int x){ if(x==1) return 1; if(x==2) return 2... 阅读全文
posted @ 2015-05-11 12:26 樱风凛 阅读(475) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12