8000 Home · orangenieS2/java_test Wiki · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
ORANGENIE edited this page May 16, 2021 · 1 revision

Title

Contents ...

  • List 1
  • List 2

Here is Quotation !!!

((Source Code))

public class HelloWorldApp {
	public static void main(String[] args) {
		
		System.out.println("Hello World!!");
		 
		char jumsu='C'; 

		switch(jumsu) {
		case 'F' : 
        	        System.out.print(0);
        	        break;
                case 'D' : 
        	        System.out.print(1);
        	        break;
                case 'C' : 
        	        System.out.print(2);
        	        break;
                case 'B' : 
        	        System.out.print(3);
        	        break;
                case 'A' : 
        	        System.out.print(4);
        	        break;
                }
        }
}
Clone this wiki locally
0