Author Topic: found a bug in Code::Blocks EP version 1.1.1 , C standard library -> Mathematics  (Read 3176 times)

Offline gts_47

  • Single posting newcomer
  • *
  • Posts: 2
When I write ->


#include<bits/stdc++.h>
using namespace std;
int main()
{
     cout<<pow(10,4);
     return 0;
}


It prints 10000,
but when I write ->


#include<bits/stdc++.h>
using namespace std;
int main()
{
    int p=pow(10,4);
    cout<<p;
    return 0;
}


It prints 9999 !!!!!!!!!!!!!
This bug wasted a lot of time during a question on codeforces
This is a serious issue please take a look at it.

Offline sodev

  • Regular
  • ***
  • Posts: 497
First: what is that for a strange CodeBlocks version, CodeBlocks is using the yy.mm scheme for quite a long time, second: i can't see any CodeBlocks problem here, i can see at best a compiler problem, and third: everyone who is writing using namespace std should be shot instantly.

Offline Commaster

  • Almost regular
  • **
  • Posts: 171
A quick search has revealed "Code::Blocks EP 1.1.1" at codeblocks.codecutter.org .
Last update in 2011. GCC 4.4.5... :sigh:...

People just can't read:
Quote
The Code::Blocks team are not involved in the production of Code::Blocks EDU-Portable and assume no responsibility for it.
« Last Edit: September 18, 2017, 01:47:15 pm by Commaster »

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Unrelated to "our" version of Code::Blocks, therefore violating our forum rules.
Topic Locked !