Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Please help me write the pseudocode for the following. I cannot get it right. im

ID: 3656449 • Letter: P

Question

Please help me write the pseudocode for the following. I cannot get it right. import java.text.DecimalFormat; public class CelsiusTemperatureTable { public static void main(String []args) { DecimalFormat cel = new DecimalFormat("#0.0"); // Format Celsius number DecimalFormat fahr = new DecimalFormat("#0.0"); // Format Fahrenheit number System.out.print("We will display a table of the Fahrenheit tempertures" + " 0 throught 32 and their Celsius equivalents. "); // Display Table System.out.println("Fahrenheit" +" " + "Celsius"); System.out.println("--------------------------"); for (double fahrenheit = 0; fahrenheit <= 32; fahrenheit++) { System.out.println(fahr.format(fahrenheit) + " " + cel.format(celsius(fahrenheit))); } } public static double celsius(double fahrenheit) { return (fahrenheit-32) * .55555; } }

Explanation / Answer

class CelsiusTemperatureTable { Declare cel ,fahr as floating point variables Display ("We will show the table of Fahranheit to celsius convertion"); loop(far=0; far
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote