编写一c++类结构程序 计算s=5!

编写一c++类结构程序 计算s=5!,第1张

#include <iostream>

using namespace std

class A

{

public:

A(int x)

{

_x = x

}

int fun()

{

int result = 1

if (_x == 0 || _x == 1)

return 1

else

for (int i = 1 i <= _x i++)

result *= i

return result

}

private:

int _x

}

int main()

{

A a(5)

cout << a.fun() << endl

return 0

}

i=2.6的时候 s=5+1=6

i=3.2s=6+1=7

i=3.8s=7+1=8

i=4.4s=8+1=9

i=5.0 超出终值4.9 跳出循环 s最后为9


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/10986659.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-12
下一篇 2023-05-12

发表评论

登录后才能评论

评论列表(0条)

保存