Computers and Technology

LAB: Parsing dates Complete main() to read dates from input, one date per line. Each date's format must be as follows: March 1, 1990. Any date not following that format is incorrect and should be ignored. Use the substring() method to parse the string and extract the date. The input ends with -1 on a line alone. Output each correct date as: 3/1/1990.
Ex: If the input is:
March 1, 1990
April 2 1995
7/15/20
December 13, 2003
-1
then the output is:
3/1/1990
12/13/2003
LAB ACTIVITY: LAB: Parsing dates
DateParser. java
1 import java. util. Scanner;
2
3 public class Dateparser {
4 public static int getmonthsInt(string monthstring) {
5 int monthInt;
6
7 // Java switch/case statement
8 switch (monthstring) {
9 case "January":
10 monthInt = 1;
11 break;
12 case "February": 13
13 monthInt = 2;
14 break;
15 case "March":
16 monthInt = 3;
17 break;
18 case "April":
19 monthInt = 4;
20 break;

answer
Answers: 1

Other questions on the subject: Computers and Technology

image
Computers and Technology, 22.06.2019 02:30, lauriepdx
The cm is responsible for overseeing the actions of the crisis management team and coordinating all crisis management efforts in cooperation with disaster recovery and/or business continuity planning, on an as-needed basis
Answers: 1
image
Computers and Technology, 22.06.2019 03:30, brin1021
Jessie has received a contract to build a real-time application for a baker. however, the baker doesn't want to invest too much money. his only requirement is that he wants the customers to know which cupcakes are available at what time and in what quantity. so his core requirement is that the details of product should be in real time. what platform can jessie use to develop this application?
Answers: 1
image
Computers and Technology, 22.06.2019 12:30, zaratayyibah
Which of the choices sean are not true when considering virus behavior
Answers: 1
image
Computers and Technology, 24.06.2019 02:40, homework1911
Has anyone seen my grandma shes been gone for 4 years already
Answers: 1
Do you know the correct answer?
LAB: Parsing dates Complete main() to read dates from input, one date per line. Each date's format...

Questions in other subjects:

Konu
Mathematics, 19.05.2020 15:59
Konu
Biology, 19.05.2020 15:59