搜索
编程论坛
→
开发语言
→
C++论坛
→
『 C++教室 』
→ 请各位高手帮我解答下面程序——最好越详细越好!
标题:
请各位高手帮我解答下面程序——最好越详细越好!
取消只看楼主
pdqlove
等 级:
新手上路
帖 子:1
专家分:0
注 册:2011-10-10
结帖率:
0
楼主
已结贴
√
问题点数:20 回复次数:0
请各位高手帮我解答下面程序——最好越详细越好!
#include <stdio.h>
int a,b;
int work(int a,int b){
if (a%b)
return work(b,a%b);
return b;
}
int main(){
scanf("%d%d",&a,&b);
printf("%d\n",work(a,b));
return 0;
}
输入:123 321
输出:_________
搜索更多相关主题的帖子:
return
include
321
最好
2011-10-10 22:05
1
1/1页
1
参与讨论请移步原网站贴子:
https://bbs.bccn.net/thread-352026-1-1.html
关于我们
|
广告合作
|
编程中国
|
清除Cookies
|
TOP
|
手机版
编程中国
版权所有,并保留所有权利。
Powered by
Discuz
, Processed in 0.472278 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved