You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

C.java 202B

12345678910111213
  1. package com.andy;
  2. public class C {
  3. public String name = "andy";
  4. public static void main(String []argv) {
  5. new C().run();
  6. }
  7. public void run() {
  8. System.out.println("hello "+name);
  9. }
  10. }