首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴瑶湖礼泊的代码贴C语言
#include <stdio.h>
#include <stdlib.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int gcd(int,int);
int main(void) {
int result;
result=gcd(150,35);
printf("The gcd of 150 and 35 is %i\n",result);
result=gcd(1026,405);
print("The gcd of 1026 and 405 is %i\n",result);
......................
阅读全部 | 2014年9月21日 09:28
1
瑶湖礼泊