码迷,mamicode.com
首页 > 编程语言 > 详细

C++谭浩强 课后习题 第四章函数预处理 4

时间:2018-02-05 14:16:58      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:第四章   int   cin   please   post   ret   ror   c++   str   

#include <iostream>
using namespace std;
int fac(int);
int main()
{
 int a,b,c;
 cout<<"please enter a,b,c";
 cin>>a>>b>>c;
 cout<<"a!="<<fac(a)<<","<<"b!="<<fac(b)<<","<<"c!="<<fac(c)<<endl;
 system("pause");
 return 0;
}
int fac(int x)
{
 int y;
if (x<0)
{
 cout<<"error!"<<endl;
 y=-1;
}
else if(x==0 || x==1)y=1;
else y=fac(x-1)*x;
 return y;
}

C++谭浩强 课后习题 第四章函数预处理 4

标签:第四章   int   cin   please   post   ret   ror   c++   str   

原文地址:https://www.cnblogs.com/Eternal-kong/p/8417047.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!