pro_grammer12's blog

By pro_grammer12, history, 4 years ago, In English

I am facing a problem with that question. It is working properly when I execute in code block ide nut when I submit that code on code forces then it is showing an error on test case 5. If Anyone knows what is with my code please tell me

include

include<math.h>

using namespace std; int main() {

int a,b,ans; cin>>a>>b;

cout<<pow(a,b)-pow(b,a);

} that is my code

  • Vote: I like it
  • -20
  • Vote: I do not like it

»
4 years ago, hide # |
Rev. 2  
Vote: I like it 0 Vote: I do not like it

Send problem link, constraints on a and b are important.

Also pow is notoriously imprecise when working with integers

»
4 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it