Class and Object instances (2)

Source: Internet
Author: User

Import Java.util.Scanner;

Public class Visitor {
String name;
int age;
Public Void Show () {
Scanner input = new Scanner (system.in);
While (! " n ". Equals (name)) {
if (age>=18&&age<=60) {
System.out.println (name+ "Your Age is:" +age+
"Ticket price is $20 \ n");
}else {
System.out.println (name+ "Your Age is:" +age+
"Ticket free \ \");
}
System.out.print ("Please enter name");
Name=input.next ();
if (! " n ". Equals (name)) {
System.out.print ("Please enter Age");
age=input.nextint ();
}
}
System.out.println ("Exit program");
}
}

Import Java.util.Scanner;

public class Initialvistor {
public static void Main (string[] args) {
Scanner input =new Scanner (system.in);
Visitor Vis =new Visitor ();
System.out.print ("Please enter Name:");
Vis.name=input.next ();
System.out.print ("Please enter your Age:");
Vis.age=input.nextint ();
Vis.show ();
}
}

Class and Object instances (2)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.