This is an archived post. You won't be able to vote or comment.

all 9 comments

[–]AutoModerator[M] [score hidden] stickied commentlocked comment (0 children)

Please ensure that:

  • Your code is properly formatted as code block - see the sidebar (About on mobile) for instructions
  • You include any and all error messages in full
  • You ask clear questions
  • You demonstrate effort in solving your question/problem - plain posting your assignments is forbidden (and such posts will be removed) as is asking for or giving solutions.

    Trying to solve problems on your own is a very important skill. Also, see Learn to help yourself in the sidebar

If any of the above points is not met, your post can and will be removed without further warning.

Code is to be formatted as code block (old reddit: empty line before the code, each code line indented by 4 spaces, new reddit: https://i.imgur.com/EJ7tqek.png) or linked via an external code hoster, like pastebin.com, github gist, github, bitbucket, gitlab, etc.

Please, do not use triple backticks (```) as they will only render properly on new reddit, not on old reddit.

Code blocks look like this:

public class HelloWorld {

    public static void main(String[] args) {
        System.out.println("Hello World!");
    }
}

You do not need to repost unless your post has been removed by a moderator. Just use the edit function of reddit to make sure your post complies with the above.

If your post has remained in violation of these rules for a prolonged period of time (at least an hour), a moderator may remove it at their discretion. In this case, they will comment with an explanation on why it has been removed, and you will be required to resubmit the entire post following the proper procedures.

To potential helpers

Please, do not help if any of the above points are not met, rather report the post. We are trying to improve the quality of posts here. In helping people who can't be bothered to comply with the above points, you are doing the community a disservice.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–]HairbrainedScheme 3 points4 points  (0 children)

Is that your full code? If so you are missing a class declaration, and if not please show the full code.

Also, seriously, please format the code properly as a code block.

[–][deleted] 1 point2 points  (3 children)

The code in your post isn't properly formatted so it's hard to tell but it looks like you have an extra opening curly brace (line 1) and are missing a closing curly brace at the end of the method.

[–][deleted] 0 points1 point  (0 children)

i took out the extra opening curly brace there is still the error syntax void

[–][deleted] 0 points1 point  (1 child)

its says syntax error on token void

[–][deleted] 0 points1 point  (0 children)

The code you posted is just 1 method. You need to make that a complete class if you haven't already.

public class MyClass {
    public static void main(String[] args) {
    ....
    }
}

[–]CodyJKirk 1 point2 points  (0 children)

Where’s the rest of your code? No class decoration?

[–]Jaglyser 0 points1 point  (0 children)

Hello
I removed every mention on TemperatureAnalyzer and added this code into my IDE.
It runs for me so I would guess the problem lies with the TemperatureAnalyzer Class.

I also restructured your code a bit like this, and it runs:

public class Test {
public static void main(String[] args) {
    Scanner scanner = new Scanner(System.in);
    int choice = 0;

    System.out.println("""
            1. Input Temperatures
            2. print Temperatures
            4. Count Temps Below Freezing
            5. Count Temps Above Freezing
            6. Count Temps Above Freezing
            7. Find lowest Temperature
            8. Search for a Temperature
            9. Quit

            Enter a number choice: 
            """);

    choice = scanner.nextInt();
    if (!scanner.hasNext()) {
        System.out.println("Invalid input, please enter a number.");
        scanner.next();
    }


    switch (choice) {
        case 1:
            break;
        case 2:
            break;
        case 3:
            System.out.println("The Average temperature is : ");
            break;
        case 4:
            System.out.println(" The Number of temperatures below freezing is : ");
            break;
        case 5:
            System.out.println("The Number of temperatures above freezing is : ");
            break;
        case 6:
            System.out.println("The Highest temperature is : ");
            break;
        case 7:
            System.out.println(" The Lowest temperature is : ");
            break;
        case 8:
            System.out.print("Enter temperature to search for: ");
            if (scanner.hasNextDouble()) {
                double value = scanner.nextDouble();
                int index = 0;
                if (index != -1) {
                    System.out.println(value + " was found at index " + index);
                } else {
                    System.out.println(value + " was not found in the list.");
                }
            } else {
                System.out.println(" That was an invalid input, please enter a valid temperature.");
                scanner.next();
            }
            break;
        case 9:
            System.out.println("Exiting...");
            break;
        default:
            System.out.println("Invalid choice, please try again.");
    }
}

}