Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please can someone give me a good Algorithm Pseudocode or Flowchart of this following java code / * * * * / public class WeatherTracker
Please can someone give me a good Algorithm Pseudocode or Flowchart of this following java code
public class WeatherTracker
@param args
@SuppressWarningsresource
public static void mainString args
TODO Autogenerated method stub
Scanner input new ScannerSystemin;
System.out.printlnWelcome to the Weather App Program!!";
System.out.printlnThis program will determine the categories of weather temperatures.";
System.out.printlnEnter the number of days you want to enter:";
int days input.nextInt;
int temperatures new intdays;
int hotDays niceDays moderateDays coldDays ;
double total ;
for int i ; i days; i
System.out.printlnEnter temperature i :;
temperaturesi input.nextInt;
total temperaturesi;
if temperaturesi
hotDays;
else if temperaturesi
niceDays;
else if temperaturesi
moderateDays;
else
coldDays;
double average total days;
System.out.printlnHot Days: hotDays;
System.out.printlnNice Days: niceDays;
System.out.printlnModerate Days: moderateDays;
System.out.printlnCold Days: coldDays;
System.out.printlnThe average temperature was average degrees.";
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started