Latihan 2
public class Conv {
public static void main(String argv[]) {
Conv c = new Conv();
String s = new String("ello");
c.amethod(s);
}
public void amethod(String s) {
char c = 'H';
String result = c + s;
System.out.println(result);
}
}
INFO