You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a program which takes an integer as input and outputs its factorial and its exponential w.r.t. itself. Both should be calculated separately in different threads.
Input - a
Output - a! (thread 1)
- a^a (thread 2)
Use any language.
The text was updated successfully, but these errors were encountered:
Create a program which takes an integer as input and outputs its factorial and its exponential w.r.t. itself. Both should be calculated separately in different threads.
Input -
a
Output -
a!
(thread 1)-
a^a
(thread 2)Use any language.
The text was updated successfully, but these errors were encountered: