Given a positive integer N, the task is to check if the given number N can be represented as the product of two positive perfect… Read More
Tag Archives: maths-cube
Given an integer N, the task is to check if the Digit Cube limit of an integer arrives at a fixed point or in a… Read More
Given a number N, the task is to write C program to check if the given number is perfect cube or not. Examples: Input: N… Read More
Given a number N, the task is to check if the number N can be represented as the difference of two consecutive cubes or not.… Read More
Given a positive integer N, the task is to find the average of cubes of first N natural numbers. Examples: Input: N = 2 Output: 4.5 Explanation: For integer… Read More
Given 5 integers say A, B, C, D, and E which represents the cubic equation , the task is to find the integral solution for… Read More
Given the size of array N, the task is to construct an array of size N with positive integer elements such that the cube sum… Read More
Given a number N, the task is to find the minimum value K such that the sum of cubes of the first K natural number… Read More
Given an integer N, the tasks is to construct a sorted array arr[] of size N, such that the sum of cube of all elements… Read More
Given number N, the task is to find the cube root using log function.Examples: Input: N = 8 Output: 2.000000Input: N = 27 Output: 3.000000 Recommended:… Read More
Given a number N, the task is to find the sum of alternating sign cubes of first N natural numbers, i.e., 13 – 23 +… Read More
Given a number N, the task is to find distinct N numbers such that their product is a perfect cube.Examples: Input: N = 3 Output: 1,… Read More
Given a String str, the task is to check the sum of ASCII values of all characters in this string is a perfect cube or… Read More
Given an array arr[], the task is to calculate the sum of cubes of all possible non-empty subsets of the given array. Since, the answer… Read More
Given two integers N and K, the task is to check whether N can be made a perfect cube after adding to or subtracting from… Read More