首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴离心运动的代码贴C语言
#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
1
离心运动