mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
Resolve type error
This commit is contained in:
parent
55ff267e5e
commit
4828788897
@ -18,7 +18,7 @@ int binExpo(int a,int b) {
|
||||
|
||||
int main() {
|
||||
int a,b;
|
||||
/// Give two nos as a^b (where '^' denotes power exponent operation
|
||||
/// Give two nos as a^b (where '^' denotes power exponent operation)
|
||||
std::cin >> a >> b;
|
||||
///Result of a^b
|
||||
std::cout << binExpo(a,b) << std::endl;
|
||||
|
Loading…
Reference in New Issue
Block a user