/**
?????*?{@inheritDoc}
?????*/
????@Override
????protected?void?onMeasure(int?widthMeasureSpec,?int?heightMeasureSpec)?{
????????int?count?=?getCh...
分类:
其他好文 时间:
2015-05-17 08:11:40
阅读次数:
377
带下划线_的函数一般是函数库内部的函数,而不带下划线的一般是提供给用户使用的函数。带下划线的目的是为了防止用户定义的函数和函数库的函数重名冲突,所以直接使用也是可以的。要用getch()必须引入头文件conio.h _T这类似的是宏定义转换,转换成函数参数相符合的类型,如果没有,编译器一般可以自动转...
分类:
其他好文 时间:
2015-05-13 16:24:12
阅读次数:
127
#include #include #include #include /*conio.h是一个包含一些字符处理函数的头文件,如getch(),getch()是无显示的从键盘接收一个字符,有显示的接收是getchar()*/typedef char string[10]; /* //定义string...
分类:
编程语言 时间:
2015-05-07 10:17:03
阅读次数:
230
#include #include #include /*conio.h是一个包含一些字符处理函数的头文件,如getch(),getch()是无显示的从键盘接收一个字符,有显示的接收是getchar()*/typedef char string[10]; /* //定义string为含有10个字符元...
分类:
编程语言 时间:
2015-04-30 10:20:47
阅读次数:
225
求阶乘#include<stdio.h>
intfact(intn);
intmain()
{
inti;
printf("请输入要求阶乘的一个整数:");
scanf("%d",&i);
printf("%d的阶乘结果为:%d\n",i,fact(i));
getch();
return0;
}
intfact(intn)
{
if(n<=1)
return1;
else
returnn*fact(n-1);
}
分类:
其他好文 时间:
2015-04-23 18:00:58
阅读次数:
122
斐波拉契数列#include<stdio.h>
#defineNUM13
intmain()
{
inti;
longfib[NUM]={1,1};
for(i=2;i<NUM;i++)
{
fib[i]=fib[i-1]+fib[i-2];
}
for(i=0;i<NUM;i++)
{
printf("%d月兔子总数:%d\n",i,fib[i]);
}
getch();
return0;
}
分类:
其他好文 时间:
2015-04-23 00:13:16
阅读次数:
143
1 #include 2 3 /* run this program using the console pauser or add your own getch, system("pause") or input loop */ 4 //karllen 5 //2015 4 18 ...
分类:
编程语言 时间:
2015-04-19 17:25:24
阅读次数:
194
//不使用库函数将整数转换为字符串,输入 int 输出 char*#include /* run this program using the console pauser or add your own getch, system("pause") or input loop */char* In...
分类:
其他好文 时间:
2015-04-19 16:11:13
阅读次数:
131
问题:
一只猴子摘了一些桃子,第一天吃了其中的一半然后又吃了一个,以后照此方法,直到第10天早上,猴子发现只剩下一个桃子,问猴子第一天摘了多桃子。
#include
#include
int A(int n);
/* run this program using the console pauser or add your own getch, system("paus...
分类:
其他好文 时间:
2015-04-04 12:18:36
阅读次数:
184
问题:
汉诺塔。
#include
#include
void hanoi(int N, char A, char B, char C);
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int ar...
分类:
其他好文 时间:
2015-04-04 12:17:57
阅读次数:
184