-
Notifications
You must be signed in to change notification settings - Fork 0
Home
ORANGENIE edited this page May 16, 2021
·
1 revision
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;
}
}
}