Jump to content
Fórum Script Brasil
  • 0

Erro com potência no code blocks


mvsantos

Question

Boa tarde, talvez alguém possa me ajudar, estou tendo um problema com o code blocks, gosto da ferramenta e uso ela na universidade, porém ele calcula errado a potência 55² que o correto seria 3025 ele calcula 3024 e tem outros casos que ocorre o erro, vejam o teste que fiz e me digam se tem algo errado com o código ou se é da ferramenta mesmo, lembrando que o programa é em C e não C++.

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

int main()
{
    int a=20, b=35, c=55, d, e, f, g, h;
    d = a + b;
    e = pow(c,2);
    f = pow(d,2);
    g = pow(a + b,2);
    h = (a+b)*(a+b);
    printf("%d\n\n", e);
    printf("%d\n\n", f);
    printf("%d\n\n", g);
    printf("%d\n\n", h);
    return 0;
}

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...