NumberCheck
Submit solution
C++
Points:
20 (partial)
Time limit:
5.0s
Memory limit:
12M
Authors:
Problem type
Allowed languages
TASK
Input a number and write a c++ program to find
- Factorial of the number using loops
- Whether the number is Palindrome or not
- Cube root of the number
- The binary equivalent to that number
Sample input 6
Sample output
Factorial of Number [ 6! ] is :: 720
The Number [ 6 ] is Palindrome.
Cube root of the number :1.81712
Binary value of n :110
Comments