I wrote a Hello world program in Java (JDK 13.1) in Notepad++ (7.8.1) and tried to run it on Windows Powershell. But it is showing me an error. How can I resolve this?

I wrote a Hello world program in Java (JDK 13.1) in Notepad++ (7.8.1) and tried to run it on Windows Powershell. But it is showing me an error. How can I resolve this?

 
    
    Your screenshot (true, don't post pictures of text - post the text!) shows that your code was compiled in Java 13 (class file version 57) but is being run against Java 8 (supports up to v52).
This is likely a PATH problem whereby the java found by default is not the one you want. It is easy to prove by running java --version
You need to determine where your Java 13 is located, test with
"C:\Program Files\Java\jdk13\bin\java" --version
Ref: Java version > class file version mappings: https://en.wikipedia.org/wiki/Java_class_file#General_layout
 
    
    