首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴雨中人X的代码贴全部
#include<stdio.h>
int CutEachOther(int a,int b)
{
int temp;
while(1)
{
if(a==b){temp=a;break;}
else if(a<b)
{temp=a;a=b;b=temp;}
temp =a-b;
if(temp==b)
{temp=b;break;}
......................
阅读全部 | 2013年3月9日 13:06
1
雨中人X