Daily C++ Olympiad Problem
Determine whether a number is a Narcissistic number (a Narcissistic number is a three-digit number whose digits’ cubes sum up to the number itself). Input format: A single line containing an integer Output format: If it is a Narcissistic number, output “Yes“, otherwise output “No“ Input example #1:153 Output example #1:Yes A video explanation of … Read more