NumberCheck


Submit solution

Points: 20 (partial)
Time limit: 5.0s
Memory limit: 12M

Authors:
Problem type
Allowed languages
C++

TASK

Input a number and write a c++ program to find

  1. Factorial of the number using loops
  2. Whether the number is Palindrome or not
  3. Cube root of the number
  4. 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

There are no comments at the moment.