#include "stdio.h"
main()
{int i,k,y;
k=2;
y=1;
for(i=2;i<17;i++)
{y=y+(k=k*2)/i
printf("%d",y);
}
#include "stdio.h"
main()
......................
阅读全部 | 2011年12月12日 06:24
#include "stdio.h"
main()
{
int i,j,y
阅读全部 | 2011年11月18日 06:10
#include "stdio.h"
main()
{
int i,j,y;
for(i=0;i<=3;i++)
for(j=0;j<=i;j++);
{ y=2*j+1;
printf("%d",y);
}
printf("\n");
}
阅读全部 | 2011年11月18日 05:40