Address类

class Address{ String country; String province; String city; String street; int post; public void tell(){ System.out.println("国家:"+country+",省份:"+province+",城市:"+city+",街道:"+street+",邮编"+post); } } pu
相关文章
相关标签/搜索