35 lines
415 B
Java
35 lines
415 B
Java
package test;
|
|
|
|
/**
|
|
* Created by Giovanni on 14/01/2015.
|
|
*/
|
|
public class test {
|
|
|
|
public static void main (String[] args){
|
|
|
|
|
|
System.out.print(fai(5));
|
|
|
|
|
|
|
|
}
|
|
|
|
public static int fai (int a){
|
|
try {
|
|
return a;
|
|
}
|
|
catch (Exception e) {
|
|
|
|
System.out.print("sada");
|
|
}
|
|
|
|
|
|
|
|
finally {
|
|
//return 10;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
}
|