Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Oh I understand now. Thank you very much.!!!
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
thx bro. I appriciate it
this is strange. When I write this code:
int sum = Math.pow(1,2);
I will get an error message which says: "Cannot convert from double to int".
But why does your notation ->> sum += Math.pow(a ,b); works?
if you rewrite this to -> sum = sum + Math.pow(); <<- it wont work!
Could you please explain?
this is strange. When I write this code:
int sum = Math.pow(1,2);
I will get an error message which says: "Cannot convert from double to int".
But why does your notation ->> sum += Math.pow(); works?
if you rewrite this to -> sum = sum + Math.pow(); <<- it wont work!
Could you please explain?
this is strange. When I write this code:
int sum = Math.pow(1,2);
I will get an error message which says: "Cannot convert from double to int".
But why does your notation ->> sum += Math.pow(); works?
if you rewrite this to -> sum = sum + Math.pow(); <<- it wont work!
Could you please explain?
this is strange. When I write this code:
int num1 = Math.pow(1,2);
I will get an error message which says: "Cannot convert from double to int".
But why does this notation ->> num1+ += Math.powe(); <<-- works?
if you rewrite this to -> num1 = num1 + Math.pow(); <<- it wont work!
Could you please explain?
This comment is hidden because it contains spoiler information about the solution
you dont need the curly braces??