File "exo01.java"

Full Path: /home/analogde/www/Ebook/Informatique/JAVA/Source/workspace/patrice/src/exo01.java
File size: 480 bytes
MIME-type: text/x-c++
Charset: utf-8


/*public class exo01 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub

	}

}*/


class fct1
{
	String un;
	
	
	int un(String str)
	{
		int maxValue = 0;      
		  System.out.println(str);
		  return(25);
	}
	
}

public class exo01{

	 public  static  void    main(String args[])
	    {
	        System.out.println("hello");
	        
	        fct1 obj = new fct1();
	        int val = obj.un("salut");
	        System.out.println(val);
	    }
	
}