IBIO Test Program
Here is a simple IBIO test program
Posted in Java, on January 23, 2012 at 22:46
**
 * A class to test the IBIO Input/Output class
 * 
 * @author Mr. Brettell 
 * @version 20111029
 * Created by D.Brettell on 29 Oct 2011
 */
public class ibioTest
{
        
	public static void main(String[] args)
    {
		IBIO.output("Hello");
		IBIO.output(" World!");
		
		int age = IBIO.inputInt("Please neter your age):");
		
		IBIO.output("You will be "+ (age+1) + " next year");
	
    } // end main
		
} // ibioTest Class

Share this code

| More

Use the link below to share the code:
HTML
BBCode