Searching...

Product of integers upto given limit.

15:39

/* if you give the integer to which you want to get product greater than 9 then it will generate output in Exponential form. if u make product and end_num integer then it will not generate answer greater than integer  value limits. */
#include <iostream>
using namespace std;
int main()
{
double product=1,end_num;
cout << "Enter integer for which u want to get Product: ";
cin >> end_num;
for (int i=1;i<=end_num;i++)
product=product*i;
cout << "Integer Product of 1 to "<< end_num << " is= " << product <<endl;
return 0;
}

0 comments:

Post a Comment

Thanks For Your FeedBack....

:) :)) ;(( :-) =)) ;( ;-( :d :-d @-) :p :o :>) (o) [-( :-? (p) :-s (m) 8-) :-t :-b b-( :-# =p~ $-) (b) (f) x-) (k) (h) (c) cheer
Click to see the code!
To insert emoticon you must added at least one space before the code.