Написать программу расчета факториала 10! — C++(Си)

#include <iostream>
int Fact ( int a )
{
return a <= 1 ? 1 : Fact ( a - 1 ) * a;
}
//===================================================================
int main()
{
    for ( int i = 0; i <= 10; ++i )
    std::cout << i << ' ' << Fact(i) << std::endl;
    
    return 0;
}

3 Thoughts to “Написать программу расчета факториала 10! — C++(Си)”

  1. Very nice info and straight to the point. I don’t know
    if this is actually the best place to ask but do you guys
    have any ideea where to employ some professional writers?
    Thx 🙂

  2. I know this site offers quality based articles and other material, is there any
    other website which presents these information in quality?

  3. Зарегистрируйтесь прямо сейчас и получите 100 фриспинов без депозита, чтобы испытать свою удачу в увлекательных играх и повысить свои шансы на крупный выигрыш. рейтинг казино онлайн ewlsccwdpv …

Leave a Comment