From 6ee63c4cef5696133cfb005a95fd7ae9226f0a60 Mon Sep 17 00:00:00 2001 From: noobProgrammer112 <106610026+noobProgrammer112@users.noreply.github.com> Date: Tue, 31 May 2022 21:32:43 +0530 Subject: [PATCH] Update TempConvTable.java word class was missing before the class name --- .../Lecture 8 - Functions and Scope/TempConvTable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Course 1 - Introduction to JAVA/Lecture 8 - Functions and Scope/TempConvTable.java b/Course 1 - Introduction to JAVA/Lecture 8 - Functions and Scope/TempConvTable.java index ee258ae..0996eaa 100644 --- a/Course 1 - Introduction to JAVA/Lecture 8 - Functions and Scope/TempConvTable.java +++ b/Course 1 - Introduction to JAVA/Lecture 8 - Functions and Scope/TempConvTable.java @@ -44,7 +44,7 @@ Fahrenheit value and its corresponding Celsius value should be separate by tab ( */ import java.util.*; -public TempConvTable { +public class TempConvTable { public static void printFahrenheitTable(int start, int end, int step) { /* Don't write main(). * Don't read input, it is passed as function argument.