From d1c59a3ab44fde4b7c914d71f0853e2008242142 Mon Sep 17 00:00:00 2001 From: Tharmabalan Nevaashahan <79234817+Nevaashahan@users.noreply.github.com> Date: Fri, 22 Sep 2023 03:48:54 +0000 Subject: [PATCH] answers_EG/2020/4098 --- PowerCalculator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PowerCalculator.java b/PowerCalculator.java index 8b0c56a..ccb99d1 100644 --- a/PowerCalculator.java +++ b/PowerCalculator.java @@ -8,7 +8,7 @@ public static void main(String[] args) { System.out.println("Enter the base number: "); double base = scanner.nextDouble(); - System.out.println("Enter the exponent: "); + System.out.println("Enter the exp: "); double exponent = scanner.nextDouble(); double power = calculatePower(base, exponent);