Thu Jan 29, 2009 3:10 pm
import java.util.Scanner;
/**
*
* @author SAMI
*/
public class Main {
public static void main(String[] args) {
// TODO code application logic here
Scanner LineInput=new Scanner(System.in);
System.out.println("Please enter your name : ");
String name=LineInput.nextLine();
System.out.println("Please enter your age : ");
int Age=LineInput.nextInt();
System.out.println("Dear member : "+name);
System.out.println("Your age is : "+Age);
}
}
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.