From e89eb8af61eea88772f96882bdd421f7938047c0 Mon Sep 17 00:00:00 2001 From: Hung Huynh Date: Fri, 2 May 2025 11:30:01 +0700 Subject: [PATCH] Update 28-tv-channels.java fix a typo in 23rd line --- 6-methods/28-tv-channels.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/6-methods/28-tv-channels.java b/6-methods/28-tv-channels.java index c127d73..e430537 100644 --- a/6-methods/28-tv-channels.java +++ b/6-methods/28-tv-channels.java @@ -20,7 +20,7 @@ public static double multiply(double num1, double num2) { } public static void main(String[] args) { - System.out.println("The result is " + multipy(new int[] { 1, 2, 3, 4, 5 })); + System.out.println("The result is " + multiply(new int[] { 1, 2, 3, 4, 5 })); System.out.println("The result is " + multiply(13, 8, 2)); System.out.println("The result is " + multiply(7, 9, 3)); System.out.println("The result is " + multiply(233.9, 0.09));