17 lines
423 B
Java
17 lines
423 B
Java
public class Example2{
|
|
int str=1;
|
|
char[]ch={'a','b'};
|
|
public static void main(String args[]){
|
|
System.out.print(" 1111111111111 "+"\n\r");
|
|
try {
|
|
Thread.sleep(1000*10);
|
|
} catch (Exception e) {
|
|
System.out.print("MYSQL ERROR:" + e.getMessage());
|
|
}
|
|
System.out.print(" 22222222222 "+"\n\r");
|
|
}
|
|
public void change(int a,char ch[]){
|
|
a=2;
|
|
ch[0]='c';
|
|
}
|
|
} |