ONLINE SUMMER TRAINING Online Courses Free Tutorials 
 Placement Preparation 
Artificial Intelligence(AI) & Machine Learning(ML) Training in Jaipur
0 like 0 dislike
158 views
in VTU B.Tech (CSE-IV Sem) Design and Analysis of Algorithm Lab by Goeduhub's Expert (5.8k points)

Write a Java class called Customer to store their name and date_of_birth. The date_of_birth format should be dd/mm/yyyy. Write methods to read customer data as <name,dd/mm/yyyy> and display as <name, dd, mm, yyyy> using StringTokenizer class considering the delimiter character as “/”

Goeduhub's Online Courses @Udemy

For Indian Students- INR 570/- || For International Students- $12.99/-

S.No.

Course Name

Apply Coupon

1.

Tensorflow 2 & Keras:Deep Learning & Artificial Intelligence

Apply Coupon

2.

Computer Vision with OpenCV | Deep Learning CNN Projects

Apply Coupon

3.

Complete Machine Learning & Data Science with Python Apply Coupon

4.

Natural Language Processing-NLP with Deep Learning in Python Apply Coupon

5.

Computer Vision OpenCV Python | YOLO| Deep Learning in Colab Apply Coupon

6.

Complete Python Programming from scratch with Projects Apply Coupon

1 Answer

0 like 0 dislike
by Goeduhub's Expert (5.8k points)
 
Best answer

Java Program

import java.util.Scanner;

import java.util.StringTokenizer;

class Customer

{

String name;

String date;

public void read()

{

Scanner input =new Scanner(System.in);

System.out.print("Enter the customer name: ");

name=input.next();

System.out.print("Enter the customer dob(dd/mm/yyyy): ");

date=input.next();

}

public void display()

{

System.out.print(name);

String delims="/";

StringTokenizer st=new StringTokenizer(date,delims);

while(st.hasMoreElements()){

System.out.print(","+st.nextElement());

}

System.out.println();

}

public static void main(String[] args)

{

System.out.println("Enter the customer details");

Customer[] cus=new Customer[30];

Scanner sc =new Scanner(System.in);

System.out.print("Enter the number of customer: ");

int n=sc.nextInt();

for(int i=0;i<n;i++)

{

cus[i]=new Customer();

cus[i].read();

}

System.out.println("Customer Details in Required Format!");

for(int i=0;i<n;i++)

cus[i].display();

}

}

Output

Output


For more VTU IV Sem DAA Lab Experiments Click here


Our Mentors(For AI-ML)


Sharda Godara Chaudhary

Mrs. Sharda Godara Chaudhary

An alumna of MNIT-Jaipur and ACCENTURE, Pune

NISHA (IIT BHU)

Ms. Nisha

An alumna of IIT-BHU

Related questions

 Goeduhub:

About Us | Contact Us || Terms & Conditions | Privacy Policy || Youtube Channel || Telegram Channel © goeduhub.com Social::   |  | 
...