Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,039 questions

52,004 answers

573 users

How to check whether a number is a perfect cube root in C

1 Answer

0 votes
// The cube root is a whole number. For example, 27 is a perfect cube, as ∛27 or (27)**1/3 = 3

#include <stdbool.h>
#include <stdio.h>
#include <math.h>

bool isPerfectCubeRoot(int x) {
    x = abs(x);

    int cubeRoot = (int)round(pow(x, 1.0 / 3.0));

    return pow(cubeRoot, 3) == x;
}

int main() {
    printf("%d\n", isPerfectCubeRoot(16));
    printf("%d\n", isPerfectCubeRoot(64));
    printf("%d\n", isPerfectCubeRoot(27));
    printf("%d\n", isPerfectCubeRoot(25));
    printf("%d\n", isPerfectCubeRoot(-64));
    printf("%d\n", isPerfectCubeRoot(-27));
    printf("%d\n", isPerfectCubeRoot(729));

    return 0;
}



/*
run:

0
1
1
0
1
1
1

*/

 



answered Sep 1, 2024 by avibootz

Related questions

1 answer 102 views
1 answer 102 views
1 answer 105 views
1 answer 138 views
1 answer 139 views
1 answer 140 views
...