From 3bb191c116a72d5ce7b6742dc04545a0078f11ab Mon Sep 17 00:00:00 2001 From: Mann Mehta <44433995+mann2108@users.noreply.github.com> Date: Thu, 2 Apr 2020 04:31:44 +0530 Subject: [PATCH] resolve format error --- math/binary_exponent.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/math/binary_exponent.cpp b/math/binary_exponent.cpp index bd9c1ce38..7ca388451 100644 --- a/math/binary_exponent.cpp +++ b/math/binary_exponent.cpp @@ -9,18 +9,18 @@ */ /// Function to calculate exponent in O(log(n)) using binary exponent. -int binExpo(int a,int b) { +int binExpo(int a, int b) { if (b == 0) return 1; - int res = binExpo(a,b/2); + int res = binExpo(a, b/2); if (b%2) return res*res*a; else return res*res; } int main() { - int a,b; + int a, b; /// 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; + std::cout << binExpo(a, b) << std::endl; }