class Address{
String country; String province; String city; String street; int post; public void tell(){ System.out.println("国家:"+country+",省份:"+province+",城市:"+city+",街道:"+street+",邮编"+post);}}public class Address01{ public static void main(String[] args){ Address add=new Address(); add.country="中国"; add.province="北京市"; add.city="北京市"; add.street="牛富路"; add.post=103010; add.tell();}}