Search:

Type: Posts; User: baueml01

Search: Search took 0.13 seconds.

  1. Replies
    6
    Views
    5,192

    Re: Conversions Between Celsius and Fahrenheit

    What I have finished so far will not compile in cmd.
  2. Replies
    6
    Views
    5,192

    Re: Conversions Between Celsius and Fahrenheit

    ok here is the whole question in the book:

    (Conversions between Celsius and Fahrenheit) Write a class that contains the following two methods:
    //Converts from celsius to fahrenheit
    public static...
  3. Replies
    6
    Views
    5,192

    Re: Conversions Between Celsius and Fahrenheit

    //Michael Bauer Exercise 5.8
    public class ConversionsBetweenCelsiusAndFahrenheit{
    public static void main(String[] args){
    for(double celsius=40; celsius<=31.0; celsius--){
    ...
  4. Replies
    6
    Views
    5,192

    Conversions Between Celsius and Fahrenheit

    Ok, I am trying to write code to convert both celsius to fahrenheit and fahrenheit to celsius. I have to use the two methods public static double celsiusToFahrenheit(double celsius) and public static...
Results 1 to 4 of 4